Files
Tim Lancina ffcdb2ebcd add es6-shim to build scripts
These scripts will probably be removed soon, but add es6-shim
now just in case.
2015-12-10 16:39:56 -06:00

39 lines
911 B
JavaScript

module.exports = {
dist: 'dist',
src: {
spec: ['ionic/**/test/*.spec.js'],
js: ['ionic/**/*.js'],
// Get all the non-js files and main.js
e2e: ['ionic/components/*/test/*/**/*'],
html: 'ionic/**/*.html',
scss: 'ionic/**/*.scss',
},
scripts: [
'node_modules/systemjs/node_modules/es6-module-loader/dist/es6-module-loader.js',
'node_modules/systemjs/dist/system.js',
'node_modules/angular2/bundles/angular2.dev.js',
'node_modules/angular2/bundles/router.dev.js',
'node_modules/angular2/bundles/http.dev.js',
'node_modules/es6-shim/es6-shim.min.js',
'dist/js/ionic.js',
'scripts/resources/web-animations-js/web-animations.min.js'
],
protractorPort: 8876,
autoprefixer: {
browsers: [
'last 2 versions',
'iOS >= 7',
'Android >= 4',
'Explorer >= 10',
'ExplorerMobile >= 11'
],
cascade: false
}
};