File tree Expand file tree Collapse file tree 2 files changed +2
-24
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +2
-24
lines changed
Original file line number Diff line number Diff line change 4
4
// We put this in a JS file so that it can contain comments. It is processed
5
5
// into a package.json file by generate-dev-bundle.sh.
6
6
7
- var fibersVersion ;
8
- if ( process . platform === "win32" ) {
9
- // We have a fork of fibers off of version 1.0.5 that searches farther for
10
- // the isolate thread. This problem is a result of antivirus programs messing
11
- // with the thread counts on Windows.
12
- // Duplicated in dev-bundle-tool-package.js
13
- fibersVersion = "https://github.com/meteor/node-fibers/tarball/d519f0c5971c33d99c902dad346b817e84bab001" ;
14
- } else {
15
- fibersVersion = "1.0.8" ;
16
- }
17
-
18
7
var packageJson = {
19
8
name : "meteor-dev-bundle" ,
20
9
// Version is not important but is needed to prevent warnings.
21
10
version : "0.0.0" ,
22
11
dependencies : {
23
- fibers : fibersVersion ,
24
12
"meteor-promise" : "0.7.2" ,
13
+ fibers : "1.0.10" ,
25
14
promise : "7.1.1" ,
26
15
// Not yet upgrading Underscore from 1.5.2 to 1.7.0 (which should be done
27
16
// in the package too) because we should consider using lodash instead
Original file line number Diff line number Diff line change 4
4
// We put this in a JS file so that it can contain comments. It is processed
5
5
// into a package.json file by generate-dev-bundle.sh.
6
6
7
- var fibersVersion ;
8
- if ( process . platform === "win32" ) {
9
- // We have a fork of fibers off of version 1.0.5 that searches farther for
10
- // the isolate thread. This problem is a result of antivirus programs messing
11
- // with the thread counts on Windows.
12
- // Duplicated in dev-bundle-server-package.js
13
- fibersVersion = "https://github.com/meteor/node-fibers/tarball/d519f0c5971c33d99c902dad346b817e84bab001" ;
14
- } else {
15
- fibersVersion = "1.0.8" ;
16
- }
17
-
18
7
var packageJson = {
19
8
name : "meteor-dev-bundle-tool" ,
20
9
// Version is not important but is needed to prevent warnings.
@@ -25,9 +14,9 @@ var packageJson = {
25
14
npm : "2.14.22" ,
26
15
"node-gyp" : "3.3.1" ,
27
16
"node-pre-gyp" : "0.6.26" ,
28
- fibers : fibersVersion ,
29
17
"meteor-babel" : "0.9.3" ,
30
18
"meteor-promise" : "0.7.2" ,
19
+ fibers : "1.0.10" ,
31
20
promise : "7.1.1" ,
32
21
// So that Babel 6 can emit require("babel-runtime/helpers/...") calls.
33
22
"babel-runtime" : "5.8.38" ,
You can’t perform that action at this time.
0 commit comments