Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
No longer include estraneous js shims
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMorton committed Dec 13, 2015
1 parent 31775eb commit 7af1d56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ var PATHS = {
'node_modules/angular2/bundles/angular2.min.js',
'node_modules/systemjs/dist/system.js',
'node_modules/systemjs/dist/system-polyfills.js',
'node_modules/es6-promise/dist/es6-promise.min.js',
'node_modules/es6-shim/es6-shim.min.js',
'node_modules/core-js/client/shim.min.js'
'node_modules/es6-shim/es6-shim.min.js'
],
rx: 'node_modules/rxjs/**/*.js',
typings: [
Expand Down
6 changes: 2 additions & 4 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,15 @@ module.exports = function(config) {

// list of files / patterns to load in the browser
files: [
'dist/lib/shim.min.js',
'dist/lib/system-polyfills.js',
'node_modules/core-js/client/shim.min.js',
'dist/lib/es6-shim.min.js',
'dist/lib/es6-promise.min.js',
'dist/lib/system.js',
'node_modules/reflect-metadata/Reflect.js',
'test-main.js',
{ pattern: 'node_modules/babel-core/*.js', included: false, serve: true, watch: false },
{ pattern: 'node_modules/angular2/*.js', included: false, serve: true, watch: false },
{ pattern: 'node_modules/angular2/src/**/*.js', included: false, serve: true, watch: false },
{ pattern: 'dist/*.js', included: false, serve: true, watch: true },
{ pattern: 'dist/**/*.js', included: false, serve: true, watch: true },
{ pattern: 'rxjs/**/*.js', included: false, serve: true, watch: false },
{
pattern: 'test/**/*spec.js',
Expand Down

0 comments on commit 7af1d56

Please sign in to comment.