Skip to content

Instantly share code, notes, and snippets.

View isaacs's full-sized avatar
🔮
only way out is through

isaacs isaacs

🔮
only way out is through
View GitHub Profile
diff --git a/lib/can-place-dep.js b/lib/can-place-dep.js
index 6be59093..e4eba7ac 100644
--- a/lib/can-place-dep.js
+++ b/lib/can-place-dep.js
@@ -145,7 +145,9 @@ class CanPlaceDep {
return CONFLICT
}
- if (targetEdge && !dep.satisfies(targetEdge) && targetEdge !== this.edge) {
+ // skip this test if there's a current node, because we might be able
diff --git a/index.js b/index.js
new file mode 100644
index 000000000..5447643e0
--- /dev/null
+++ b/index.js
@@ -0,0 +1,5 @@
+if (require.main === module) {
+ require('./lib/cli.js')(process)
+} else {
+ throw new Error('The programmatic API was removed in npm v8.0.0')
#!/usr/bin/env node
/*
put this in your package.json
"scripts": {
"preinstall": "node node-version-preinstall.js"
}
*/
#!/usr/bin/env node
const args = process.argv.slice(2)
if (args.length < 3)
console.error(`usage: node ${process.argv[1]} <file> <key> [<subkey> ...] <value>`)
const file = args.shift()
const value = args.pop()
const { readFileSync, writeFileSync } = require('fs')
diff --git a/lib/index.js b/lib/index.js
index 0bf91c1..70b9cbf 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -6,4 +6,4 @@ const { resolve } = require('path')
const eslintrc = resolve(__dirname, './.eslintrc.json')
const args = ['-c', eslintrc, ...process.argv.slice(2)]
const result = spawnSync(whichSync('eslint'), args, { stdio: 'inherit' })
-process.exitCode = result.exitCode
+process.exitCode = result.status
diff --cc lib/setup.js
index ebf498b,159dbda..0000000
--- a/lib/setup.js
+++ b/lib/setup.js
@@@ -1,9 -1,9 +1,16 @@@
#!/usr/bin/env node
const { resolve } = require('path')
+const cwd = process.cwd()
const { readdirSync, writeFileSync, existsSync } = require('fs')
const Node = require('./lib/node.js')
const gatherDepSet = require('./lib/gather-dep-set.js')
const tree = new Node({
path: '/some/path',
pkg: { name: 'root', version: '1.0.0', dependencies: { a: '', e: '' }},
children: [
{ pkg: { name: 'a', version: '1.0.0', dependencies: { b: '', c: '' }}},
{ pkg: { name: 'b', version: '1.0.0', dependencies: { d: '' }}},
{ pkg: { name: 'c', version: '1.0.0' }},
@isaacs
isaacs / y.js
Last active August 24, 2021 15:57
const Node = require('./lib/node.js')
const gatherDepSet = require('./lib/gather-dep-set.js')
const tree = new Node({
path: '/some/path/to/root',
pkg: { name: 'root', version: '1.0.0', dependencies: { a: '1', e: '1.x' }},
children: [
{ pkg: { name: 'a', version: '1.0.0', dependencies: { b: '1.x', c: '1.0.x' }}},
{ pkg: { name: 'b', version: '1.0.0', dependencies: { d: '1.0.0' }}},
{ pkg: { name: 'c', version: '1.0.0' }},
diff --git a/lib/arborist/reify.js b/lib/arborist/reify.js
index 965435f8..275563b3 100644
--- a/lib/arborist/reify.js
+++ b/lib/arborist/reify.js
@@ -326,6 +326,16 @@ module.exports = cls => class Reifier extends cls {
if (actual)
filterNodes.push(actual)
}
+ if (this[_includeWorkspaceRoot]) {
+ for (const tree of [this.idealTree, this.actualTree]) {