This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- pattern: './**/0/**/0/**/0/**/0/**/*.txt' --- | |
~~ sync ~~ | |
node fast-glob sync 0m0.523s 10 | |
node globby sync 0m0.514s 10 | |
node current glob.sync mjs 0m0.570s 10 | |
node current glob syncStream 0m0.584s 10 | |
~~ async ~~ | |
node fast-glob async 0m0.280s 10 | |
node globby async 0m0.292s 10 | |
node current glob async mjs 0m0.324s 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const apiKey = {{ stripe test private key goes here }} | |
const html = ` | |
<!doctype html> | |
<html> | |
<head> | |
<script type="module"> | |
import { Tier } from 'https://unpkg.com/[email protected]/dist/mjs/client.js' | |
const tier = new Tier({ | |
apiKey: ${JSON.stringify(apiKey)}, | |
baseURL: 'https://api.tier.run', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/index.js b/index.js | |
index fa53c12..620cf57 100644 | |
--- a/index.js | |
+++ b/index.js | |
@@ -849,6 +849,114 @@ class LRUCache { | |
} | |
} | |
+ getSet( | |
+ k, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"name":"hello-world-bespoke-archive-format","version":"1.0.0","main":"lib/index.js"} | |
console.log('hello, world!') | |
# hello-world-bespoke-archive-format | |
An example of a "hello world" program, but instead of being a tarball, it's | |
shown in the bespoke package format that npm *SHOULD* have used, instead of | |
tar. | |
One can be forgiven for not wanting to reinvent the wheel, but let this be a | |
lesson that, in fact, some wheels _ought_ to be reinvented, when the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rm -rf .tap; _TAPJS_PROCESSINFO_EXCLUDE_='/(?!'$PWD'/lib/node-options-to-argv.cjs$)^.*$/' node --loader=./lib/esm.mjs test/node-options-to-argv.cjs | |
(node:41096) ExperimentalWarning: --experimental-loader is an experimental feature. This feature could change at any time | |
(Use `node --trace-warnings ...` to show where the warning was created) | |
TAP version 13 | |
1..7 | |
ok 1 - should be equivalent | |
ok 2 - should be equivalent | |
ok 3 - should be equivalent | |
ok 4 - should be equivalent | |
ok 5 - should be equivalent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {Node} = require('../') | |
const tree = new Node({ | |
path: '/some/path', | |
pkg: { dependencies: { foo: '' }}, | |
children: [ | |
{ | |
pkg: {name:'foo',version:'1.2.3',dependencies:{bar:''}}, | |
children: [{pkg: {name:'bar',version:'1.2.3'}}], | |
}, | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {Node} = require('../') | |
const tree = new Node({ | |
path: '/some/path', | |
pkg: { dependencies: { foo: '' }}, | |
children: [ | |
{ | |
pkg: {name:'foo',version:'1.2.3',dependencies:{bar:''}}, | |
children: [{pkg: {name:'bar',version:'1.2.3'}}], | |
}, | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js b/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js | |
index ed0e47daf..1d4e20292 100644 | |
--- a/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js | |
+++ b/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js | |
@@ -308,11 +308,13 @@ module.exports = cls => class VirtualLoader extends cls { | |
target, | |
pkg: target && target.package, | |
}) | |
- link.extraneous = target.extraneous | |
- link.devOptional = target.devOptional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/can-place-dep.js b/lib/can-place-dep.js | |
index 6be59093..3291b6fb 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/@npmcli/arborist/lib/can-place-dep.js b/node_modules/@npmcli/arborist/lib/can-place-dep.js | |
index 6be59093c..3291b6fbf 100644 | |
--- a/node_modules/@npmcli/arborist/lib/can-place-dep.js | |
+++ b/node_modules/@npmcli/arborist/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 |