config.js 838 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. module.exports = {
  2. dist: 'dist',
  3. src: {
  4. spec: ['src/**/test/*.spec.js'],
  5. js: ['src/**/*.js'],
  6. // Get all the non-js files and main.js
  7. e2e: ['src/components/*/test/*/**/*'],
  8. html: 'src/**/*.html',
  9. scss: 'src/**/*.scss',
  10. },
  11. scripts: [
  12. 'node_modules/systemjs/node_modules/es6-module-loader/dist/es6-module-loader.js',
  13. 'node_modules/systemjs/dist/system.js',
  14. 'node_modules/angular2/bundles/angular2.dev.js',
  15. 'node_modules/angular2/bundles/router.dev.js',
  16. 'node_modules/angular2/bundles/http.dev.js',
  17. 'node_modules/es6-shim/es6-shim.min.js',
  18. 'dist/js/ionic.js'
  19. ],
  20. protractorPort: 8876,
  21. autoprefixer: {
  22. browsers: [
  23. 'last 2 versions',
  24. 'iOS >= 8',
  25. 'Android >= 4.4',
  26. 'Explorer >= 11',
  27. 'ExplorerMobile >= 11'
  28. ],
  29. cascade: false
  30. }
  31. };