Skip to content

Commit

Permalink
fix(all): remove core-js
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 25, 2016
1 parent e62d976 commit 44c5e84
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 15 deletions.
9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,15 @@
"aurelia-history": "^1.0.0-beta.1.1.1",
"aurelia-logging": "^1.0.0-beta.1.1.1",
"aurelia-path": "^1.0.0-beta.1.1.0",
"aurelia-route-recognizer": "^1.0.0-beta.1.1.0",
"core-js": "^2.0.3"
"aurelia-route-recognizer": "^1.0.0-beta.1.1.0"
},
"dependencies": {
"aurelia-dependency-injection": "^1.0.0-beta.1.1.2",
"aurelia-event-aggregator": "^1.0.0-beta.1.1.0",
"aurelia-history": "^1.0.0-beta.1.1.1",
"aurelia-logging": "^1.0.0-beta.1.1.1",
"aurelia-path": "^1.0.0-beta.1.1.0",
"aurelia-route-recognizer": "^1.0.0-beta.1.1.0",
"core-js": "^2.0.3"
"aurelia-route-recognizer": "^1.0.0-beta.1.1.0"
},
"devDependencies": {
"babel": "babel-core@^5.8.24",
Expand All @@ -59,8 +57,7 @@
"aurelia-history": "^1.0.0-beta.1.1.1",
"aurelia-logging": "^1.0.0-beta.1.1.1",
"aurelia-path": "^1.0.0-beta.1.1.0",
"aurelia-route-recognizer": "^1.0.0-beta.1.1.0",
"core-js": "^2.0.3"
"aurelia-route-recognizer": "^1.0.0-beta.1.1.0"
},
"devDependencies": {
"aurelia-tools": "0.1.16",
Expand Down
1 change: 0 additions & 1 deletion src/app-router.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'core-js';
import * as LogManager from 'aurelia-logging';
import {Container} from 'aurelia-dependency-injection';
import {History} from 'aurelia-history';
Expand Down
2 changes: 0 additions & 2 deletions src/navigation-commands.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import 'core-js';

/**
* Determines if the provided object is a navigation command.
* A navigation command is anything with a navigate method.
Expand Down
2 changes: 0 additions & 2 deletions src/navigation-instruction.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import 'core-js';

interface NavigationInstructionInit {
fragment: string,
queryString: string,
Expand Down
2 changes: 0 additions & 2 deletions src/pipeline.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import 'core-js';

/**
* The status of a Pipeline.
*/
Expand Down
1 change: 0 additions & 1 deletion src/router.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'core-js';
import {RouteRecognizer} from 'aurelia-route-recognizer';
import {Container} from 'aurelia-dependency-injection';
import {History} from 'aurelia-history';
Expand Down
1 change: 0 additions & 1 deletion test/navigation-commands.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {Redirect, isNavigationCommand} from '../src/navigation-commands';
import 'core-js';

describe('isNavigationCommand', () => {
it('should return true for object which has a navigate method', () => {
Expand Down

0 comments on commit 44c5e84

Please sign in to comment.