aboutsummaryrefslogtreecommitdiffstats
path: root/community/yarn/remove-support-for-legacy-nodejs.patch
blob: dbb7d9d71de8b5915332b0ddb3d0188478152781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
diff -urp dist/bin/yarn.js patched/bin/yarn.js
--- dist/bin/yarn.js	2017-01-30 14:11:29.000000000 +0000
+++ patched/bin/yarn.js	2017-02-01 02:41:32.000000000 +0000
@@ -16,17 +16,14 @@ var _err;
 if (semver.satisfies(ver, '>=5.0.0')) {
   possibles.push('../updates/current/lib/cli/index.js');
   possibles.push('../lib/cli/index.js');
-} else if (semver.satisfies(ver, '>=4.0.0')) {
-  possibles.push('../updates/current/lib-legacy/cli/index.js');
-  possibles.push('../lib-legacy/cli/index.js');
 } else {
-  console.log(require('chalk').red('Node version ' + ver + ' is not supported, please use Node.js 4.0 or higher.'));
+  console.log(require('chalk').red('Node version ' + ver + ' is not supported, please use Node.js 5.0 or higher.'));
   process.exit(1);
 }
 
 // ensure cache directory exists
 var mkdirp = require('mkdirp');
-var constants = require('../lib-legacy/constants');
+var constants = require('../lib/constants');
 mkdirp.sync(constants.MODULE_CACHE_DIRECTORY);
 
 // init roadrunner