Skip to content

Commit

Permalink
fix(all): remove core-js dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 18, 2016
1 parent b9d752d commit 9fbd741
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 11 deletions.
3 changes: 1 addition & 2 deletions bower.json
Expand Up @@ -18,7 +18,6 @@
},
"dependencies": {
"aurelia-pal": "^1.0.0-beta.1.1.1",
"aurelia-path": "^1.0.0-beta.1.1.0",
"core-js": "zloirock/core-js"
"aurelia-path": "^1.0.0-beta.1.1.0"
}
}
3 changes: 2 additions & 1 deletion karma.conf.js
Expand Up @@ -41,7 +41,8 @@ module.exports = function(config) {
moduleIds: false,
loose: "all",
optional: [
"es7.decorators"
"es7.decorators",
"es7.classProperties"
]
}
},
Expand Down
9 changes: 3 additions & 6 deletions package.json
Expand Up @@ -28,13 +28,11 @@
},
"peerDependencies": {
"aurelia-pal": "^1.0.0-beta.1.1.1",
"aurelia-path": "^1.0.0-beta.1.1.0",
"core-js": "^2.0.3"
"aurelia-path": "^1.0.0-beta.1.1.0"
},
"dependencies": {
"aurelia-pal": "^1.0.0-beta.1.1.1",
"aurelia-path": "^1.0.0-beta.1.1.0",
"core-js": "^2.0.3"
"aurelia-path": "^1.0.0-beta.1.1.0"
},
"devDependencies": {
"aurelia-pal-browser": "^1.0.0-beta.1.1.2",
Expand All @@ -45,8 +43,7 @@
},
"dependencies": {
"aurelia-pal": "^1.0.0-beta.1",
"aurelia-path": "^1.0.0-beta.1",
"core-js": "^2.0.3"
"aurelia-path": "^1.0.0-beta.1"
},
"devDependencies": {
"aurelia-tools": "^0.1.12",
Expand Down
1 change: 0 additions & 1 deletion src/http-client.js
@@ -1,5 +1,4 @@
/*eslint no-unused-vars:0*/
import 'core-js';
import {DOM} from 'aurelia-pal';
import {RequestMessage} from './request-message';
import {RequestBuilder} from './request-builder';
Expand Down
1 change: 0 additions & 1 deletion src/request-message-processor.js
@@ -1,6 +1,5 @@
/*eslint no-unused-vars:0*/
import {PLATFORM} from 'aurelia-pal';
import 'core-js';
import {RequestMessage} from './request-message';
import {HttpResponseMessage} from './http-response-message';

Expand Down

0 comments on commit 9fbd741

Please sign in to comment.