Skip to content

Commit 3bda1c3

Browse files
author
Ben Newman
committed
Upgrade the meteor-babel, reify, and install npm packages.
1 parent b5b76a8 commit 3bda1c3

File tree

9 files changed

+49
-30
lines changed

9 files changed

+49
-30
lines changed

History.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,20 @@
99
information about how dynamic `import(...)` works in Meteor, and how to
1010
use it in your applications.
1111

12-
* The `meteor-babel` npm package has been upgraded to version 0.20.3, and
13-
the `reify` npm package has been upgraded to version 0.9.2, fixing
12+
* The `meteor-babel` npm package has been upgraded to version 0.21.1.
13+
14+
* The `reify` npm package has been upgraded to version 0.11.0, fixing
1415
[issue #8595](https://github.com/meteor/meteor/issues/8595) and
1516
improving compilation and runtime performance.
1617

18+
> Note: With this version of Reify, `import` declarations are compiled to
19+
`module.watch(require(id), ...)` instead of `module.importSync(id, ...)`
20+
or the older `module.import(id, ...)`. The behavior of the compiled code
21+
should be the same as before, but the details seemed different enough to
22+
warrant a note.
23+
24+
* The `install` npm package has been upgraded to version 0.10.1.
25+
1726
## v1.4.4.2, 2017-05-02
1827

1928
* Node has been upgraded to version 4.8.2.

packages/babel-compiler/.npm/package/npm-shrinkwrap.json

Lines changed: 19 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/babel-compiler/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Package.describe({
1010
});
1111

1212
Npm.depends({
13-
'meteor-babel': '0.20.3'
13+
'meteor-babel': '0.21.1'
1414
});
1515

1616
Package.onUse(function (api) {

packages/modules-runtime/.npm/package/npm-shrinkwrap.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/modules-runtime/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Package.describe({
77
});
88

99
Npm.depends({
10-
install: "0.10.0"
10+
install: "0.10.1"
1111
});
1212

1313
Package.onUse(function(api) {

packages/modules/.npm/package/npm-shrinkwrap.json

Lines changed: 10 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/modules/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Package.describe({
66
});
77

88
Npm.depends({
9-
reify: "0.9.2"
9+
reify: "0.11.0"
1010
});
1111

1212
Package.onUse(function(api) {

packages/modules/reify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var Module = module.constructor;
2-
require("reify/lib/runtime").enable(Module);
32
var Mp = Module.prototype;
3+
require("reify/lib/runtime").enable(Mp);
44
Mp.importSync = Mp.importSync || Mp.import;
55
Mp.import = Mp.import || Mp.importSync;

scripts/dev-bundle-tool-package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ var packageJson = {
1414
npm: "4.5.0",
1515
"node-gyp": "3.6.0",
1616
"node-pre-gyp": "0.6.34",
17-
"meteor-babel": "0.20.3",
18-
reify: "0.9.2",
17+
"meteor-babel": "0.21.1",
18+
reify: "0.11.0",
1919
"meteor-promise": "0.8.0",
2020
fibers: "1.0.15",
2121
promise: "7.1.1",

0 commit comments

Comments
 (0)