blob: 5492327a69c3c476ee9d828575a8a8e9a0d0e6c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* Contains the configuration for the build process.
*/
module.exports = {
compile_dir: "bin",
build_dir: "build",
app_files: {
js: [ 'src/**/*.js', '!src/**/*.spec.js', '!src/assets/**/*.js' ],
jsunit: [ 'src/**/*.spec.js' ],
sass: 'sass/ns-popover.scss'
}
};
|