Skip to content

Commit 3fbed84

Browse files
owlstronautwraithgar
authored andcommitted
chore: install rimraf as a devdependency for smoke tests
1 parent 43f0b41 commit 3fbed84

File tree

3 files changed

+106
-0
lines changed

3 files changed

+106
-0
lines changed

DEPENDENCIES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,7 @@ graph LR;
677677
npmcli-smoke-tests-->npmcli-promise-spawn["@npmcli/promise-spawn"];
678678
npmcli-smoke-tests-->npmcli-template-oss["@npmcli/template-oss"];
679679
npmcli-smoke-tests-->proxy;
680+
npmcli-smoke-tests-->rimraf;
680681
npmcli-smoke-tests-->tap;
681682
npmcli-smoke-tests-->which;
682683
pacote-->cacache;

package-lock.json

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18786,13 +18786,117 @@
1878618786
"@npmcli/promise-spawn": "^8.0.1",
1878718787
"@npmcli/template-oss": "4.23.6",
1878818788
"proxy": "^2.1.1",
18789+
"rimraf": "^6.0.1",
1878918790
"tap": "^16.3.8",
1879018791
"which": "^5.0.0"
1879118792
},
1879218793
"engines": {
1879318794
"node": "^20.17.0 || >=22.9.0"
1879418795
}
1879518796
},
18797+
"smoke-tests/node_modules/glob": {
18798+
"version": "11.0.1",
18799+
"resolved": "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz",
18800+
"integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==",
18801+
"dev": true,
18802+
"license": "ISC",
18803+
"dependencies": {
18804+
"foreground-child": "^3.1.0",
18805+
"jackspeak": "^4.0.1",
18806+
"minimatch": "^10.0.0",
18807+
"minipass": "^7.1.2",
18808+
"package-json-from-dist": "^1.0.0",
18809+
"path-scurry": "^2.0.0"
18810+
},
18811+
"bin": {
18812+
"glob": "dist/esm/bin.mjs"
18813+
},
18814+
"engines": {
18815+
"node": "20 || >=22"
18816+
},
18817+
"funding": {
18818+
"url": "https://github.com/sponsors/isaacs"
18819+
}
18820+
},
18821+
"smoke-tests/node_modules/jackspeak": {
18822+
"version": "4.1.0",
18823+
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz",
18824+
"integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==",
18825+
"dev": true,
18826+
"license": "BlueOak-1.0.0",
18827+
"dependencies": {
18828+
"@isaacs/cliui": "^8.0.2"
18829+
},
18830+
"engines": {
18831+
"node": "20 || >=22"
18832+
},
18833+
"funding": {
18834+
"url": "https://github.com/sponsors/isaacs"
18835+
}
18836+
},
18837+
"smoke-tests/node_modules/lru-cache": {
18838+
"version": "11.1.0",
18839+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.1.0.tgz",
18840+
"integrity": "sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==",
18841+
"dev": true,
18842+
"license": "ISC",
18843+
"engines": {
18844+
"node": "20 || >=22"
18845+
}
18846+
},
18847+
"smoke-tests/node_modules/minimatch": {
18848+
"version": "10.0.1",
18849+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz",
18850+
"integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==",
18851+
"dev": true,
18852+
"license": "ISC",
18853+
"dependencies": {
18854+
"brace-expansion": "^2.0.1"
18855+
},
18856+
"engines": {
18857+
"node": "20 || >=22"
18858+
},
18859+
"funding": {
18860+
"url": "https://github.com/sponsors/isaacs"
18861+
}
18862+
},
18863+
"smoke-tests/node_modules/path-scurry": {
18864+
"version": "2.0.0",
18865+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz",
18866+
"integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==",
18867+
"dev": true,
18868+
"license": "BlueOak-1.0.0",
18869+
"dependencies": {
18870+
"lru-cache": "^11.0.0",
18871+
"minipass": "^7.1.2"
18872+
},
18873+
"engines": {
18874+
"node": "20 || >=22"
18875+
},
18876+
"funding": {
18877+
"url": "https://github.com/sponsors/isaacs"
18878+
}
18879+
},
18880+
"smoke-tests/node_modules/rimraf": {
18881+
"version": "6.0.1",
18882+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz",
18883+
"integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==",
18884+
"dev": true,
18885+
"license": "ISC",
18886+
"dependencies": {
18887+
"glob": "^11.0.0",
18888+
"package-json-from-dist": "^1.0.0"
18889+
},
18890+
"bin": {
18891+
"rimraf": "dist/esm/bin.mjs"
18892+
},
18893+
"engines": {
18894+
"node": "20 || >=22"
18895+
},
18896+
"funding": {
18897+
"url": "https://github.com/sponsors/isaacs"
18898+
}
18899+
},
1879618900
"workspaces/arborist": {
1879718901
"name": "@npmcli/arborist",
1879818902
"version": "9.0.1",

smoke-tests/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"@npmcli/promise-spawn": "^8.0.1",
2525
"@npmcli/template-oss": "4.23.6",
2626
"proxy": "^2.1.1",
27+
"rimraf": "^6.0.1",
2728
"tap": "^16.3.8",
2829
"which": "^5.0.0"
2930
},

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy