Files
angular.js/docs/config/services/deployments/debug.js

35 lines
1.0 KiB
JavaScript

"use strict";
module.exports = function debugDeployment(getComponentPath) {
return {
name: 'debug',
examples: {
commonFiles: {
scripts: [ '../../../angular.js' ]
},
dependencyPath: '../../../'
},
scripts: [
getComponentPath('hammerjs', 'hammer.js'),
getComponentPath('angular'),
getComponentPath('angular-animate'),
getComponentPath('angular-aria'),
getComponentPath('angular-material'),
getComponentPath('angular-sanitize'),
getComponentPath('marked', 'lib/marked.js', 'node_modules', 'package.json'),
getComponentPath('lunr.js', 'lunr.js'),
getComponentPath('google-code-prettify', 'src/prettify.js'),
getComponentPath('google-code-prettify', 'src/lang-css.js'),
'js/versions-data.js',
'js/pages-data.js',
'js/nav-data.js',
'js/docs.js'
],
stylesheets: [
getComponentPath('angular-material', 'angular-material.css'),
'css/prettify-theme.css',
'css/docs.css',
'css/animations.css'
]
};
};