mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-06-10 06:49:34 +08:00
40 lines
1.3 KiB
JavaScript
40 lines
1.3 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'),
|
|
getComponentPath('angular-material', 'themes/grey-theme.css'),
|
|
getComponentPath('angular-material', 'themes/red-theme.css'),
|
|
'css/prettify-theme.css',
|
|
'css/docs.css',
|
|
'css/animations.css',
|
|
'font-awesome/css/font-awesome.css',
|
|
'//fonts.googleapis.com/css?family=Roboto:400,400italic,500,700'
|
|
]
|
|
};
|
|
};
|