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