-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathbuild.conf.js
More file actions
27 lines (26 loc) · 848 Bytes
/
build.conf.js
File metadata and controls
27 lines (26 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* This file contains all of the user settings for the gulp build process
*/
module.exports = {
srcJs: ['component/**/*.module.js', 'component/**/*.js', '!component/**/*.test.js'],
tests: 'component/**/*.test.js',
views: 'component/**/*.html',
docs: {
views: 'docs/templates/*.html',
items: 'docs/**/*',
templateBanner: '/*!\n' +
' * This has been generated from "gulp docs", please edit the templates instead templates/*.html\n' +
' */\n',
templateJsFilename: 'js/docs.tpl.js',
build: 'docs/dist'
},
coverageFolder: 'coverage',
buildFolder: 'dist',
buildJsFilename: 'xtForm.js',
templateJsFilename: 'xtForm.tpl.js',
banner: '/*!\n' +
' * See LICENSE in this repository for license information\n' +
' */\n',
closureStart: '(function(){\n\'use strict\';\n',
closureEnd: '\n})();'
};