Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 17ebe79

Browse files
committed
update dependencies, all tests passing
1 parent 30ed631 commit 17ebe79

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://github.com/ModuleLoader/es6-module-loader",
66
"main": "dist/es6-module-loader-sans-promises.js",
77
"dependencies": {
8-
"traceur": "0.0.79"
8+
"traceur": "0.0.82"
99
},
1010
"keywords": [
1111
"es6",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
"test:browser:perf": "karma start karma-benchmark.conf.js --single-run"
6464
},
6565
"dependencies": {
66-
"6to5": "^2.0.2",
66+
"6to5": "^3.0.0",
6767
"grunt-contrib-uglify": "0.6.0",
68-
"traceur": "0.0.79",
68+
"traceur": "0.0.82",
6969
"when": "^3.6.4"
7070
}
7171
}

test/system.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ describe('System', function () {
9797

9898
describe('with circular dependencies', function () {
9999

100-
it('should resolve circular dependencies', function (done) {
100+
(System.parser == 'traceur' ? it : it.skip)('should resolve circular dependencies', function (done) {
101101
System.import('test/syntax/circular1')
102102
.then(function (m1) {
103103
return System.import('test/syntax/circular2').then(function (m2) {

0 commit comments

Comments
 (0)