aboutsummaryrefslogtreecommitdiffstats
path: root/community/yarn/remove-support-for-legacy-nodejs.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/yarn/remove-support-for-legacy-nodejs.patch')
-rw-r--r--community/yarn/remove-support-for-legacy-nodejs.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/community/yarn/remove-support-for-legacy-nodejs.patch b/community/yarn/remove-support-for-legacy-nodejs.patch
deleted file mode 100644
index f3c291ea6d..0000000000
--- a/community/yarn/remove-support-for-legacy-nodejs.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- dist/bin/yarn.js
-+++ dist/bin/yarn.js
-@@ -13,10 +13,8 @@
-
- if (semver.satisfies(ver, '>=5.0.0')) {
- path = '../lib/cli/index.js';
--} else if (semver.satisfies(ver, '>=4.0.0')) {
-- path = '../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);
- }
-
-@@ -27,7 +25,7 @@
-
- // 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