aboutsummaryrefslogtreecommitdiffstats
path: root/build.config.js
blob: 5c6138cb4422369a3b90bb8e0a17b9af38f73212 (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'
  }
};