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

Commit 363aae4

Browse files
committed
build update
1 parent a4110cc commit 363aae4

6 files changed

Lines changed: 13 additions & 18 deletions

File tree

babel-helpers.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,4 +376,3 @@
376376
}
377377
};
378378
})(typeof global === "undefined" ? self : global);
379-

build-babel/jspm.browser.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
System.config({
1+
SystemJS.config({
22
baseURL: ".",
33
paths: {
4-
"github:*": "jspm_packages/github/*",
5-
"npm:*": "jspm_packages/npm/*"
4+
"github:": "jspm_packages/github/",
5+
"npm:": "jspm_packages/npm/"
66
}
77
});

build-babel/jspm.config.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
SystemJS.config({
2-
packages: {}
2+
devConfig: {
3+
"map": {
4+
"plugin-babel": "npm:systemjs-plugin-babel@0.0.10"
5+
}
6+
},
7+
transpiler: "plugin-babel"
38
});
49

510
SystemJS.config({
@@ -38,7 +43,6 @@ SystemJS.config({
3843
"babel-preset-stage-3": "npm:babel-preset-stage-3@6.5.0",
3944
"core-js": "npm:core-js@1.2.6",
4045
"regenerator": "github:facebook/regenerator@0.8.42",
41-
"traceur": "github:jmcriffey/bower-traceur@0.0.93",
4246
"assert": "github:jspm/nodelibs-assert@0.2.0-alpha",
4347
"buffer": "github:jspm/nodelibs-buffer@0.2.0-alpha",
4448
"child_process": "github:jspm/nodelibs-child_process@0.2.0-alpha",

build-babel/package.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"regenerator": "github:facebook/regenerator@^0.8.42"
3333
},
3434
"devDependencies": {
35-
"traceur": "github:jmcriffey/bower-traceur@^0.0.93"
35+
"plugin-babel": "npm:systemjs-plugin-babel@0.0.10"
3636
},
3737
"peerDependencies": {
3838
"assert": "github:jspm/nodelibs-assert@^0.2.0-alpha",
@@ -52,14 +52,6 @@
5252
"util": "github:jspm/nodelibs-util@^0.2.0-alpha"
5353
},
5454
"overrides": {
55-
"github:jmcriffey/bower-traceur@0.0.93": {
56-
"meta": {
57-
"traceur.js": {
58-
"exports": "traceur",
59-
"format": "global"
60-
}
61-
}
62-
},
6355
"npm:inherits@2.0.1": {
6456
"ignore": [
6557
"test.js"

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cd build-babel
22
jspm install --quick --log err
3-
jspm build systemjs-babel.js ../systemjs-babel-browser.js --format amd --skip-source-maps --minify --log ok
4-
jspm build systemjs-babel.js ../systemjs-babel-node.js --format amd --node --skip-source-maps --log ok
3+
jspm build systemjs-babel.js ../systemjs-babel-browser.js --format amd --skip-source-maps --skip-rollup --minify --log ok
4+
jspm build systemjs-babel.js ../systemjs-babel-node.js --format amd --node --skip-source-maps --skip-rollup --log ok
55
jspm run systemjs-build-babel-helpers.js > ../babel-helpers.js
66
jspm run systemjs-build-modular-babel-helpers.js
77
(

plugin-babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ exports.translate = function(load) {
101101
.then(function() {
102102
return pluginLoader.get(normalized)['default'];
103103
});
104-
});
104+
})
105105
);
106106
});
107107

0 commit comments

Comments
 (0)