pnpm 7.0.0 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node_modules/.modules.yaml +2 -2
- package/dist/pnpm.cjs +863 -67
- package/dist/pnpx.cjs +862 -66
- package/package.json +18 -18
package/dist/pnpm.cjs
CHANGED
|
@@ -3182,7 +3182,7 @@ var require_lib4 = __commonJS({
|
|
|
3182
3182
|
var load_json_file_1 = __importDefault(require_load_json_file());
|
|
3183
3183
|
var defaultManifest = {
|
|
3184
3184
|
name: "pnpm" != null && true ? "pnpm" : "pnpm",
|
|
3185
|
-
version: "7.0.
|
|
3185
|
+
version: "7.0.1" != null && true ? "7.0.1" : "0.0.0"
|
|
3186
3186
|
};
|
|
3187
3187
|
var pkgJson;
|
|
3188
3188
|
if (require.main == null) {
|
|
@@ -40830,7 +40830,6 @@ var require_reporterForClient = __commonJS({
|
|
|
40830
40830
|
zoomOutCurrent: opts.isRecursive
|
|
40831
40831
|
}),
|
|
40832
40832
|
(0, reportInstallChecks_1.default)(log$.installCheck, { cwd }),
|
|
40833
|
-
(0, reportRequestRetry_1.default)(log$.requestRetry),
|
|
40834
40833
|
(0, reportScope_1.default)(log$.scope, { isRecursive: opts.isRecursive, cmd: opts.cmd }),
|
|
40835
40834
|
(0, reportSkippedOptionalDependencies_1.default)(log$.skippedOptionalDependency, { cwd }),
|
|
40836
40835
|
(0, reportHooks_1.default)(log$.hook, { cwd, isRecursive: opts.isRecursive }),
|
|
@@ -40839,7 +40838,7 @@ var require_reporterForClient = __commonJS({
|
|
|
40839
40838
|
];
|
|
40840
40839
|
const logLevelNumber = reportMisc_1.LOG_LEVEL_NUMBER[opts.logLevel ?? "info"] ?? reportMisc_1.LOG_LEVEL_NUMBER["info"];
|
|
40841
40840
|
if (logLevelNumber >= reportMisc_1.LOG_LEVEL_NUMBER.warn) {
|
|
40842
|
-
outputs.push((0, reportPeerDependencyIssues_1.default)(log$), (0, reportDeprecations_1.default)(log$.deprecation, { cwd, isRecursive: opts.isRecursive }));
|
|
40841
|
+
outputs.push((0, reportPeerDependencyIssues_1.default)(log$), (0, reportDeprecations_1.default)(log$.deprecation, { cwd, isRecursive: opts.isRecursive }), (0, reportRequestRetry_1.default)(log$.requestRetry));
|
|
40843
40842
|
}
|
|
40844
40843
|
if (logLevelNumber >= reportMisc_1.LOG_LEVEL_NUMBER.info) {
|
|
40845
40844
|
outputs.push((0, reportProgress_1.default)(log$, {
|
|
@@ -50083,10 +50082,10 @@ var require_lib27 = __commonJS({
|
|
|
50083
50082
|
function default_1(pkgs, opts) {
|
|
50084
50083
|
const pkgMap = createPkgMap(pkgs);
|
|
50085
50084
|
const unmatched = [];
|
|
50086
|
-
const graph = Object.
|
|
50085
|
+
const graph = Object.entries(pkgMap).reduce((acc, [pkgSpec, pkg]) => {
|
|
50087
50086
|
acc[pkgSpec] = {
|
|
50088
|
-
dependencies: createNode(
|
|
50089
|
-
package:
|
|
50087
|
+
dependencies: createNode(pkg),
|
|
50088
|
+
package: pkg
|
|
50090
50089
|
};
|
|
50091
50090
|
return acc;
|
|
50092
50091
|
}, {});
|
|
@@ -50097,9 +50096,8 @@ var require_lib27 = __commonJS({
|
|
|
50097
50096
|
...pkg.manifest.optionalDependencies,
|
|
50098
50097
|
...pkg.manifest.dependencies
|
|
50099
50098
|
};
|
|
50100
|
-
return Object.
|
|
50099
|
+
return Object.entries(dependencies).map(([depName, rawSpec]) => {
|
|
50101
50100
|
let spec;
|
|
50102
|
-
let rawSpec = dependencies[depName];
|
|
50103
50101
|
const isWorkspaceSpec = rawSpec.startsWith("workspace:");
|
|
50104
50102
|
try {
|
|
50105
50103
|
if (isWorkspaceSpec) {
|
|
@@ -71259,10 +71257,10 @@ var require_checkFilesIntegrity = __commonJS({
|
|
|
71259
71257
|
var parseJson_1 = require_parseJson();
|
|
71260
71258
|
var limit = (0, p_limit_12.default)(20);
|
|
71261
71259
|
var MAX_BULK_SIZE = 1 * 1024 * 1024;
|
|
71260
|
+
global["verifiedFileIntegrity"] = 0;
|
|
71262
71261
|
async function default_1(cafsDir, pkgIndex, manifest) {
|
|
71263
71262
|
let verified = true;
|
|
71264
|
-
await Promise.all(Object.
|
|
71265
|
-
const fstat = pkgIndex[f];
|
|
71263
|
+
await Promise.all(Object.entries(pkgIndex).map(async ([f, fstat]) => limit(async () => {
|
|
71266
71264
|
if (!fstat.integrity) {
|
|
71267
71265
|
throw new Error(`Integrity checksum is missing for ${f}`);
|
|
71268
71266
|
}
|
|
@@ -71290,6 +71288,7 @@ var require_checkFilesIntegrity = __commonJS({
|
|
|
71290
71288
|
return true;
|
|
71291
71289
|
}
|
|
71292
71290
|
async function verifyFileIntegrity(filename, expectedFile, deferredManifest) {
|
|
71291
|
+
global["verifiedFileIntegrity"]++;
|
|
71293
71292
|
try {
|
|
71294
71293
|
if (expectedFile.size > MAX_BULK_SIZE && deferredManifest == null) {
|
|
71295
71294
|
const ok2 = Boolean(await ssri_1.default.checkStream(graceful_fs_1.default.createReadStream(filename), expectedFile.integrity));
|
|
@@ -112816,10 +112815,11 @@ var require_prune2 = __commonJS({
|
|
|
112816
112815
|
...(0, difference_1.default)(currentPkgs, wantedPkgs).map(([depName]) => depName)
|
|
112817
112816
|
]);
|
|
112818
112817
|
if (pruneDirectDependencies) {
|
|
112818
|
+
const publiclyHoistedDeps = getPubliclyHoistedDependencies(opts.hoistedDependencies);
|
|
112819
112819
|
if (allCurrentPackages.size > 0) {
|
|
112820
112820
|
const newPkgsSet = new Set(wantedPkgs.map(([depName]) => depName));
|
|
112821
112821
|
for (const currentPackage of Array.from(allCurrentPackages)) {
|
|
112822
|
-
if (!newPkgsSet.has(currentPackage)) {
|
|
112822
|
+
if (!newPkgsSet.has(currentPackage) && !publiclyHoistedDeps.has(currentPackage)) {
|
|
112823
112823
|
depsToRemove.add(currentPackage);
|
|
112824
112824
|
}
|
|
112825
112825
|
}
|
|
@@ -112939,6 +112939,17 @@ var require_prune2 = __commonJS({
|
|
|
112939
112939
|
const packagesOfSelectedOnly = (0, pickAll_1.default)((0, difference_1.default)(Object.keys(selected.packages), Object.keys(other.packages)), selected.packages);
|
|
112940
112940
|
return getPkgsDepPaths(registries, packagesOfSelectedOnly, skipped);
|
|
112941
112941
|
}
|
|
112942
|
+
function getPubliclyHoistedDependencies(hoistedDependencies) {
|
|
112943
|
+
const publiclyHoistedDeps = /* @__PURE__ */ new Set();
|
|
112944
|
+
for (const hoistedAliases of Object.values(hoistedDependencies)) {
|
|
112945
|
+
for (const [alias, hoistType] of Object.entries(hoistedAliases)) {
|
|
112946
|
+
if (hoistType === "public") {
|
|
112947
|
+
publiclyHoistedDeps.add(alias);
|
|
112948
|
+
}
|
|
112949
|
+
}
|
|
112950
|
+
}
|
|
112951
|
+
return publiclyHoistedDeps;
|
|
112952
|
+
}
|
|
112942
112953
|
}
|
|
112943
112954
|
});
|
|
112944
112955
|
|
|
@@ -117768,6 +117779,728 @@ var require_lib98 = __commonJS({
|
|
|
117768
117779
|
}
|
|
117769
117780
|
});
|
|
117770
117781
|
|
|
117782
|
+
// ../../node_modules/.pnpm/@yarnpkg+plugin-compat@4.0.0-rc.4_@yarnpkg+core@3.2.0/node_modules/@yarnpkg/plugin-compat/lib/extensions.js
|
|
117783
|
+
var require_extensions = __commonJS({
|
|
117784
|
+
"../../node_modules/.pnpm/@yarnpkg+plugin-compat@4.0.0-rc.4_@yarnpkg+core@3.2.0/node_modules/@yarnpkg/plugin-compat/lib/extensions.js"(exports2) {
|
|
117785
|
+
"use strict";
|
|
117786
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
117787
|
+
exports2.packageExtensions = void 0;
|
|
117788
|
+
var optionalPeerDep = {
|
|
117789
|
+
optional: true
|
|
117790
|
+
};
|
|
117791
|
+
exports2.packageExtensions = [
|
|
117792
|
+
[`@tailwindcss/aspect-ratio@<0.2.1`, {
|
|
117793
|
+
peerDependencies: {
|
|
117794
|
+
[`tailwindcss`]: `^2.0.2`
|
|
117795
|
+
}
|
|
117796
|
+
}],
|
|
117797
|
+
[`@tailwindcss/line-clamp@<0.2.1`, {
|
|
117798
|
+
peerDependencies: {
|
|
117799
|
+
[`tailwindcss`]: `^2.0.2`
|
|
117800
|
+
}
|
|
117801
|
+
}],
|
|
117802
|
+
[`@fullhuman/postcss-purgecss@3.1.3 || 3.1.3-alpha.0`, {
|
|
117803
|
+
peerDependencies: {
|
|
117804
|
+
[`postcss`]: `^8.0.0`
|
|
117805
|
+
}
|
|
117806
|
+
}],
|
|
117807
|
+
[`@samverschueren/stream-to-observable@<0.3.1`, {
|
|
117808
|
+
peerDependenciesMeta: {
|
|
117809
|
+
[`rxjs`]: optionalPeerDep,
|
|
117810
|
+
[`zenObservable`]: optionalPeerDep
|
|
117811
|
+
}
|
|
117812
|
+
}],
|
|
117813
|
+
[`any-observable@<0.5.1`, {
|
|
117814
|
+
peerDependenciesMeta: {
|
|
117815
|
+
[`rxjs`]: optionalPeerDep,
|
|
117816
|
+
[`zenObservable`]: optionalPeerDep
|
|
117817
|
+
}
|
|
117818
|
+
}],
|
|
117819
|
+
[`@pm2/agent@<1.0.4`, {
|
|
117820
|
+
dependencies: {
|
|
117821
|
+
[`debug`]: `*`
|
|
117822
|
+
}
|
|
117823
|
+
}],
|
|
117824
|
+
[`debug@<4.2.0`, {
|
|
117825
|
+
peerDependenciesMeta: {
|
|
117826
|
+
[`supports-color`]: optionalPeerDep
|
|
117827
|
+
}
|
|
117828
|
+
}],
|
|
117829
|
+
[`got@<11`, {
|
|
117830
|
+
dependencies: {
|
|
117831
|
+
[`@types/responselike`]: `^1.0.0`,
|
|
117832
|
+
[`@types/keyv`]: `^3.1.1`
|
|
117833
|
+
}
|
|
117834
|
+
}],
|
|
117835
|
+
[`cacheable-lookup@<4.1.2`, {
|
|
117836
|
+
dependencies: {
|
|
117837
|
+
[`@types/keyv`]: `^3.1.1`
|
|
117838
|
+
}
|
|
117839
|
+
}],
|
|
117840
|
+
[`http-link-dataloader@*`, {
|
|
117841
|
+
peerDependencies: {
|
|
117842
|
+
[`graphql`]: `^0.13.1 || ^14.0.0`
|
|
117843
|
+
}
|
|
117844
|
+
}],
|
|
117845
|
+
[`typescript-language-server@*`, {
|
|
117846
|
+
dependencies: {
|
|
117847
|
+
[`vscode-jsonrpc`]: `^5.0.1`,
|
|
117848
|
+
[`vscode-languageserver-protocol`]: `^3.15.0`
|
|
117849
|
+
}
|
|
117850
|
+
}],
|
|
117851
|
+
[`postcss-syntax@*`, {
|
|
117852
|
+
peerDependenciesMeta: {
|
|
117853
|
+
[`postcss-html`]: optionalPeerDep,
|
|
117854
|
+
[`postcss-jsx`]: optionalPeerDep,
|
|
117855
|
+
[`postcss-less`]: optionalPeerDep,
|
|
117856
|
+
[`postcss-markdown`]: optionalPeerDep,
|
|
117857
|
+
[`postcss-scss`]: optionalPeerDep
|
|
117858
|
+
}
|
|
117859
|
+
}],
|
|
117860
|
+
[`jss-plugin-rule-value-function@<=10.1.1`, {
|
|
117861
|
+
dependencies: {
|
|
117862
|
+
[`tiny-warning`]: `^1.0.2`
|
|
117863
|
+
}
|
|
117864
|
+
}],
|
|
117865
|
+
[`ink-select-input@<4.1.0`, {
|
|
117866
|
+
peerDependencies: {
|
|
117867
|
+
react: `^16.8.2`
|
|
117868
|
+
}
|
|
117869
|
+
}],
|
|
117870
|
+
[`license-webpack-plugin@<2.3.18`, {
|
|
117871
|
+
peerDependenciesMeta: {
|
|
117872
|
+
[`webpack`]: optionalPeerDep
|
|
117873
|
+
}
|
|
117874
|
+
}],
|
|
117875
|
+
[`snowpack@>=3.3.0`, {
|
|
117876
|
+
dependencies: {
|
|
117877
|
+
[`node-gyp`]: `^7.1.0`
|
|
117878
|
+
}
|
|
117879
|
+
}],
|
|
117880
|
+
[`promise-inflight@*`, {
|
|
117881
|
+
peerDependenciesMeta: {
|
|
117882
|
+
[`bluebird`]: optionalPeerDep
|
|
117883
|
+
}
|
|
117884
|
+
}],
|
|
117885
|
+
[`reactcss@*`, {
|
|
117886
|
+
peerDependencies: {
|
|
117887
|
+
react: `*`
|
|
117888
|
+
}
|
|
117889
|
+
}],
|
|
117890
|
+
[`react-color@<=2.19.0`, {
|
|
117891
|
+
peerDependencies: {
|
|
117892
|
+
react: `*`
|
|
117893
|
+
}
|
|
117894
|
+
}],
|
|
117895
|
+
[`gatsby-plugin-i18n@*`, {
|
|
117896
|
+
dependencies: {
|
|
117897
|
+
ramda: `^0.24.1`
|
|
117898
|
+
}
|
|
117899
|
+
}],
|
|
117900
|
+
[`useragent@^2.0.0`, {
|
|
117901
|
+
dependencies: {
|
|
117902
|
+
request: `^2.88.0`,
|
|
117903
|
+
yamlparser: `0.0.x`,
|
|
117904
|
+
semver: `5.5.x`
|
|
117905
|
+
}
|
|
117906
|
+
}],
|
|
117907
|
+
[`@apollographql/apollo-tools@<=0.5.2`, {
|
|
117908
|
+
peerDependencies: {
|
|
117909
|
+
graphql: `^14.2.1 || ^15.0.0`
|
|
117910
|
+
}
|
|
117911
|
+
}],
|
|
117912
|
+
[`material-table@^2.0.0`, {
|
|
117913
|
+
dependencies: {
|
|
117914
|
+
"@babel/runtime": `^7.11.2`
|
|
117915
|
+
}
|
|
117916
|
+
}],
|
|
117917
|
+
[`@babel/parser@*`, {
|
|
117918
|
+
dependencies: {
|
|
117919
|
+
"@babel/types": `^7.8.3`
|
|
117920
|
+
}
|
|
117921
|
+
}],
|
|
117922
|
+
[`fork-ts-checker-webpack-plugin@<=6.3.4`, {
|
|
117923
|
+
peerDependencies: {
|
|
117924
|
+
eslint: `>= 6`,
|
|
117925
|
+
typescript: `>= 2.7`,
|
|
117926
|
+
webpack: `>= 4`,
|
|
117927
|
+
"vue-template-compiler": `*`
|
|
117928
|
+
},
|
|
117929
|
+
peerDependenciesMeta: {
|
|
117930
|
+
eslint: optionalPeerDep,
|
|
117931
|
+
"vue-template-compiler": optionalPeerDep
|
|
117932
|
+
}
|
|
117933
|
+
}],
|
|
117934
|
+
[`rc-animate@<=3.1.1`, {
|
|
117935
|
+
peerDependencies: {
|
|
117936
|
+
react: `>=16.9.0`,
|
|
117937
|
+
"react-dom": `>=16.9.0`
|
|
117938
|
+
}
|
|
117939
|
+
}],
|
|
117940
|
+
[`react-bootstrap-table2-paginator@*`, {
|
|
117941
|
+
dependencies: {
|
|
117942
|
+
classnames: `^2.2.6`
|
|
117943
|
+
}
|
|
117944
|
+
}],
|
|
117945
|
+
[`react-draggable@<=4.4.3`, {
|
|
117946
|
+
peerDependencies: {
|
|
117947
|
+
react: `>= 16.3.0`,
|
|
117948
|
+
"react-dom": `>= 16.3.0`
|
|
117949
|
+
}
|
|
117950
|
+
}],
|
|
117951
|
+
[`apollo-upload-client@<14`, {
|
|
117952
|
+
peerDependencies: {
|
|
117953
|
+
graphql: `14 - 15`
|
|
117954
|
+
}
|
|
117955
|
+
}],
|
|
117956
|
+
[`react-instantsearch-core@<=6.7.0`, {
|
|
117957
|
+
peerDependencies: {
|
|
117958
|
+
algoliasearch: `>= 3.1 < 5`
|
|
117959
|
+
}
|
|
117960
|
+
}],
|
|
117961
|
+
[`react-instantsearch-dom@<=6.7.0`, {
|
|
117962
|
+
dependencies: {
|
|
117963
|
+
"react-fast-compare": `^3.0.0`
|
|
117964
|
+
}
|
|
117965
|
+
}],
|
|
117966
|
+
[`ws@<7.2.1`, {
|
|
117967
|
+
peerDependencies: {
|
|
117968
|
+
bufferutil: `^4.0.1`,
|
|
117969
|
+
"utf-8-validate": `^5.0.2`
|
|
117970
|
+
},
|
|
117971
|
+
peerDependenciesMeta: {
|
|
117972
|
+
bufferutil: optionalPeerDep,
|
|
117973
|
+
"utf-8-validate": optionalPeerDep
|
|
117974
|
+
}
|
|
117975
|
+
}],
|
|
117976
|
+
[`react-portal@*`, {
|
|
117977
|
+
peerDependencies: {
|
|
117978
|
+
"react-dom": `^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0`
|
|
117979
|
+
}
|
|
117980
|
+
}],
|
|
117981
|
+
[`react-scripts@<=4.0.1`, {
|
|
117982
|
+
peerDependencies: {
|
|
117983
|
+
[`react`]: `*`
|
|
117984
|
+
}
|
|
117985
|
+
}],
|
|
117986
|
+
[`testcafe@<=1.10.1`, {
|
|
117987
|
+
dependencies: {
|
|
117988
|
+
"@babel/plugin-transform-for-of": `^7.12.1`,
|
|
117989
|
+
"@babel/runtime": `^7.12.5`
|
|
117990
|
+
}
|
|
117991
|
+
}],
|
|
117992
|
+
[`testcafe-legacy-api@<=4.2.0`, {
|
|
117993
|
+
dependencies: {
|
|
117994
|
+
"testcafe-hammerhead": `^17.0.1`,
|
|
117995
|
+
"read-file-relative": `^1.2.0`
|
|
117996
|
+
}
|
|
117997
|
+
}],
|
|
117998
|
+
[`@google-cloud/firestore@<=4.9.3`, {
|
|
117999
|
+
dependencies: {
|
|
118000
|
+
protobufjs: `^6.8.6`
|
|
118001
|
+
}
|
|
118002
|
+
}],
|
|
118003
|
+
[`gatsby-source-apiserver@*`, {
|
|
118004
|
+
dependencies: {
|
|
118005
|
+
[`babel-polyfill`]: `^6.26.0`
|
|
118006
|
+
}
|
|
118007
|
+
}],
|
|
118008
|
+
[`@webpack-cli/package-utils@<=1.0.1-alpha.4`, {
|
|
118009
|
+
dependencies: {
|
|
118010
|
+
[`cross-spawn`]: `^7.0.3`
|
|
118011
|
+
}
|
|
118012
|
+
}],
|
|
118013
|
+
[`gatsby-remark-prismjs@<3.3.28`, {
|
|
118014
|
+
dependencies: {
|
|
118015
|
+
[`lodash`]: `^4`
|
|
118016
|
+
}
|
|
118017
|
+
}],
|
|
118018
|
+
[`gatsby-plugin-favicon@*`, {
|
|
118019
|
+
peerDependencies: {
|
|
118020
|
+
[`webpack`]: `*`
|
|
118021
|
+
}
|
|
118022
|
+
}],
|
|
118023
|
+
[`gatsby-plugin-sharp@<=4.6.0-next.3`, {
|
|
118024
|
+
dependencies: {
|
|
118025
|
+
[`debug`]: `^4.3.1`
|
|
118026
|
+
}
|
|
118027
|
+
}],
|
|
118028
|
+
[`gatsby-react-router-scroll@<=5.6.0-next.0`, {
|
|
118029
|
+
dependencies: {
|
|
118030
|
+
[`prop-types`]: `^15.7.2`
|
|
118031
|
+
}
|
|
118032
|
+
}],
|
|
118033
|
+
[`@rebass/forms@*`, {
|
|
118034
|
+
dependencies: {
|
|
118035
|
+
[`@styled-system/should-forward-prop`]: `^5.0.0`
|
|
118036
|
+
},
|
|
118037
|
+
peerDependencies: {
|
|
118038
|
+
react: `^16.8.6`
|
|
118039
|
+
}
|
|
118040
|
+
}],
|
|
118041
|
+
[`rebass@*`, {
|
|
118042
|
+
peerDependencies: {
|
|
118043
|
+
react: `^16.8.6`
|
|
118044
|
+
}
|
|
118045
|
+
}],
|
|
118046
|
+
[`@ant-design/react-slick@<=0.28.3`, {
|
|
118047
|
+
peerDependencies: {
|
|
118048
|
+
react: `>=16.0.0`
|
|
118049
|
+
}
|
|
118050
|
+
}],
|
|
118051
|
+
[`mqtt@<4.2.7`, {
|
|
118052
|
+
dependencies: {
|
|
118053
|
+
duplexify: `^4.1.1`
|
|
118054
|
+
}
|
|
118055
|
+
}],
|
|
118056
|
+
[`vue-cli-plugin-vuetify@<=2.0.3`, {
|
|
118057
|
+
dependencies: {
|
|
118058
|
+
semver: `^6.3.0`
|
|
118059
|
+
},
|
|
118060
|
+
peerDependenciesMeta: {
|
|
118061
|
+
"sass-loader": optionalPeerDep,
|
|
118062
|
+
"vuetify-loader": optionalPeerDep
|
|
118063
|
+
}
|
|
118064
|
+
}],
|
|
118065
|
+
[`vue-cli-plugin-vuetify@<=2.0.4`, {
|
|
118066
|
+
dependencies: {
|
|
118067
|
+
"null-loader": `^3.0.0`
|
|
118068
|
+
}
|
|
118069
|
+
}],
|
|
118070
|
+
[`@vuetify/cli-plugin-utils@<=0.0.4`, {
|
|
118071
|
+
dependencies: {
|
|
118072
|
+
semver: `^6.3.0`
|
|
118073
|
+
},
|
|
118074
|
+
peerDependenciesMeta: {
|
|
118075
|
+
"sass-loader": optionalPeerDep
|
|
118076
|
+
}
|
|
118077
|
+
}],
|
|
118078
|
+
[`@vue/cli-plugin-typescript@<=5.0.0-alpha.0`, {
|
|
118079
|
+
dependencies: {
|
|
118080
|
+
"babel-loader": `^8.1.0`
|
|
118081
|
+
}
|
|
118082
|
+
}],
|
|
118083
|
+
[`@vue/cli-plugin-typescript@<=5.0.0-beta.0`, {
|
|
118084
|
+
dependencies: {
|
|
118085
|
+
"@babel/core": `^7.12.16`
|
|
118086
|
+
},
|
|
118087
|
+
peerDependencies: {
|
|
118088
|
+
"vue-template-compiler": `^2.0.0`
|
|
118089
|
+
},
|
|
118090
|
+
peerDependenciesMeta: {
|
|
118091
|
+
"vue-template-compiler": optionalPeerDep
|
|
118092
|
+
}
|
|
118093
|
+
}],
|
|
118094
|
+
[`cordova-ios@<=6.3.0`, {
|
|
118095
|
+
dependencies: {
|
|
118096
|
+
underscore: `^1.9.2`
|
|
118097
|
+
}
|
|
118098
|
+
}],
|
|
118099
|
+
[`cordova-lib@<=10.0.1`, {
|
|
118100
|
+
dependencies: {
|
|
118101
|
+
underscore: `^1.9.2`
|
|
118102
|
+
}
|
|
118103
|
+
}],
|
|
118104
|
+
[`git-node-fs@*`, {
|
|
118105
|
+
peerDependencies: {
|
|
118106
|
+
"js-git": `^0.7.8`
|
|
118107
|
+
},
|
|
118108
|
+
peerDependenciesMeta: {
|
|
118109
|
+
"js-git": optionalPeerDep
|
|
118110
|
+
}
|
|
118111
|
+
}],
|
|
118112
|
+
[`consolidate@*`, {
|
|
118113
|
+
peerDependencies: {
|
|
118114
|
+
velocityjs: `^2.0.1`,
|
|
118115
|
+
tinyliquid: `^0.2.34`,
|
|
118116
|
+
"liquid-node": `^3.0.1`,
|
|
118117
|
+
jade: `^1.11.0`,
|
|
118118
|
+
"then-jade": `*`,
|
|
118119
|
+
dust: `^0.3.0`,
|
|
118120
|
+
"dustjs-helpers": `^1.7.4`,
|
|
118121
|
+
"dustjs-linkedin": `^2.7.5`,
|
|
118122
|
+
swig: `^1.4.2`,
|
|
118123
|
+
"swig-templates": `^2.0.3`,
|
|
118124
|
+
"razor-tmpl": `^1.3.1`,
|
|
118125
|
+
atpl: `>=0.7.6`,
|
|
118126
|
+
liquor: `^0.0.5`,
|
|
118127
|
+
twig: `^1.15.2`,
|
|
118128
|
+
ejs: `^3.1.5`,
|
|
118129
|
+
eco: `^1.1.0-rc-3`,
|
|
118130
|
+
jazz: `^0.0.18`,
|
|
118131
|
+
jqtpl: `~1.1.0`,
|
|
118132
|
+
hamljs: `^0.6.2`,
|
|
118133
|
+
hamlet: `^0.3.3`,
|
|
118134
|
+
whiskers: `^0.4.0`,
|
|
118135
|
+
"haml-coffee": `^1.14.1`,
|
|
118136
|
+
"hogan.js": `^3.0.2`,
|
|
118137
|
+
templayed: `>=0.2.3`,
|
|
118138
|
+
handlebars: `^4.7.6`,
|
|
118139
|
+
underscore: `^1.11.0`,
|
|
118140
|
+
lodash: `^4.17.20`,
|
|
118141
|
+
pug: `^3.0.0`,
|
|
118142
|
+
"then-pug": `*`,
|
|
118143
|
+
qejs: `^3.0.5`,
|
|
118144
|
+
walrus: `^0.10.1`,
|
|
118145
|
+
mustache: `^4.0.1`,
|
|
118146
|
+
just: `^0.1.8`,
|
|
118147
|
+
ect: `^0.5.9`,
|
|
118148
|
+
mote: `^0.2.0`,
|
|
118149
|
+
toffee: `^0.3.6`,
|
|
118150
|
+
dot: `^1.1.3`,
|
|
118151
|
+
"bracket-template": `^1.1.5`,
|
|
118152
|
+
ractive: `^1.3.12`,
|
|
118153
|
+
nunjucks: `^3.2.2`,
|
|
118154
|
+
htmling: `^0.0.8`,
|
|
118155
|
+
"babel-core": `^6.26.3`,
|
|
118156
|
+
plates: `~0.4.11`,
|
|
118157
|
+
"react-dom": `^16.13.1`,
|
|
118158
|
+
react: `^16.13.1`,
|
|
118159
|
+
"arc-templates": `^0.5.3`,
|
|
118160
|
+
vash: `^0.13.0`,
|
|
118161
|
+
slm: `^2.0.0`,
|
|
118162
|
+
marko: `^3.14.4`,
|
|
118163
|
+
teacup: `^2.0.0`,
|
|
118164
|
+
"coffee-script": `^1.12.7`,
|
|
118165
|
+
squirrelly: `^5.1.0`,
|
|
118166
|
+
twing: `^5.0.2`
|
|
118167
|
+
},
|
|
118168
|
+
peerDependenciesMeta: {
|
|
118169
|
+
velocityjs: optionalPeerDep,
|
|
118170
|
+
tinyliquid: optionalPeerDep,
|
|
118171
|
+
"liquid-node": optionalPeerDep,
|
|
118172
|
+
jade: optionalPeerDep,
|
|
118173
|
+
"then-jade": optionalPeerDep,
|
|
118174
|
+
dust: optionalPeerDep,
|
|
118175
|
+
"dustjs-helpers": optionalPeerDep,
|
|
118176
|
+
"dustjs-linkedin": optionalPeerDep,
|
|
118177
|
+
swig: optionalPeerDep,
|
|
118178
|
+
"swig-templates": optionalPeerDep,
|
|
118179
|
+
"razor-tmpl": optionalPeerDep,
|
|
118180
|
+
atpl: optionalPeerDep,
|
|
118181
|
+
liquor: optionalPeerDep,
|
|
118182
|
+
twig: optionalPeerDep,
|
|
118183
|
+
ejs: optionalPeerDep,
|
|
118184
|
+
eco: optionalPeerDep,
|
|
118185
|
+
jazz: optionalPeerDep,
|
|
118186
|
+
jqtpl: optionalPeerDep,
|
|
118187
|
+
hamljs: optionalPeerDep,
|
|
118188
|
+
hamlet: optionalPeerDep,
|
|
118189
|
+
whiskers: optionalPeerDep,
|
|
118190
|
+
"haml-coffee": optionalPeerDep,
|
|
118191
|
+
"hogan.js": optionalPeerDep,
|
|
118192
|
+
templayed: optionalPeerDep,
|
|
118193
|
+
handlebars: optionalPeerDep,
|
|
118194
|
+
underscore: optionalPeerDep,
|
|
118195
|
+
lodash: optionalPeerDep,
|
|
118196
|
+
pug: optionalPeerDep,
|
|
118197
|
+
"then-pug": optionalPeerDep,
|
|
118198
|
+
qejs: optionalPeerDep,
|
|
118199
|
+
walrus: optionalPeerDep,
|
|
118200
|
+
mustache: optionalPeerDep,
|
|
118201
|
+
just: optionalPeerDep,
|
|
118202
|
+
ect: optionalPeerDep,
|
|
118203
|
+
mote: optionalPeerDep,
|
|
118204
|
+
toffee: optionalPeerDep,
|
|
118205
|
+
dot: optionalPeerDep,
|
|
118206
|
+
"bracket-template": optionalPeerDep,
|
|
118207
|
+
ractive: optionalPeerDep,
|
|
118208
|
+
nunjucks: optionalPeerDep,
|
|
118209
|
+
htmling: optionalPeerDep,
|
|
118210
|
+
"babel-core": optionalPeerDep,
|
|
118211
|
+
plates: optionalPeerDep,
|
|
118212
|
+
"react-dom": optionalPeerDep,
|
|
118213
|
+
react: optionalPeerDep,
|
|
118214
|
+
"arc-templates": optionalPeerDep,
|
|
118215
|
+
vash: optionalPeerDep,
|
|
118216
|
+
slm: optionalPeerDep,
|
|
118217
|
+
marko: optionalPeerDep,
|
|
118218
|
+
teacup: optionalPeerDep,
|
|
118219
|
+
"coffee-script": optionalPeerDep,
|
|
118220
|
+
squirrelly: optionalPeerDep,
|
|
118221
|
+
twing: optionalPeerDep
|
|
118222
|
+
}
|
|
118223
|
+
}],
|
|
118224
|
+
[`vue-loader@<=16.3.3`, {
|
|
118225
|
+
peerDependencies: {
|
|
118226
|
+
"@vue/compiler-sfc": `^3.0.8`,
|
|
118227
|
+
webpack: `^4.1.0 || ^5.0.0-0`
|
|
118228
|
+
},
|
|
118229
|
+
peerDependenciesMeta: {
|
|
118230
|
+
"@vue/compiler-sfc": optionalPeerDep
|
|
118231
|
+
}
|
|
118232
|
+
}],
|
|
118233
|
+
[`vue-loader@^16.7.0`, {
|
|
118234
|
+
peerDependencies: {
|
|
118235
|
+
"@vue/compiler-sfc": `^3.0.8`,
|
|
118236
|
+
vue: `^3.2.13`
|
|
118237
|
+
},
|
|
118238
|
+
peerDependenciesMeta: {
|
|
118239
|
+
"@vue/compiler-sfc": optionalPeerDep,
|
|
118240
|
+
vue: optionalPeerDep
|
|
118241
|
+
}
|
|
118242
|
+
}],
|
|
118243
|
+
[`scss-parser@*`, {
|
|
118244
|
+
dependencies: {
|
|
118245
|
+
lodash: `^4.17.21`
|
|
118246
|
+
}
|
|
118247
|
+
}],
|
|
118248
|
+
[`query-ast@*`, {
|
|
118249
|
+
dependencies: {
|
|
118250
|
+
lodash: `^4.17.21`
|
|
118251
|
+
}
|
|
118252
|
+
}],
|
|
118253
|
+
[`redux-thunk@<=2.3.0`, {
|
|
118254
|
+
peerDependencies: {
|
|
118255
|
+
redux: `^4.0.0`
|
|
118256
|
+
}
|
|
118257
|
+
}],
|
|
118258
|
+
[`skypack@<=0.3.2`, {
|
|
118259
|
+
dependencies: {
|
|
118260
|
+
tar: `^6.1.0`
|
|
118261
|
+
}
|
|
118262
|
+
}],
|
|
118263
|
+
[`@npmcli/metavuln-calculator@<2.0.0`, {
|
|
118264
|
+
dependencies: {
|
|
118265
|
+
"json-parse-even-better-errors": `^2.3.1`
|
|
118266
|
+
}
|
|
118267
|
+
}],
|
|
118268
|
+
[`bin-links@<2.3.0`, {
|
|
118269
|
+
dependencies: {
|
|
118270
|
+
"mkdirp-infer-owner": `^1.0.2`
|
|
118271
|
+
}
|
|
118272
|
+
}],
|
|
118273
|
+
[`rollup-plugin-polyfill-node@<=0.8.0`, {
|
|
118274
|
+
peerDependencies: {
|
|
118275
|
+
rollup: `^1.20.0 || ^2.0.0`
|
|
118276
|
+
}
|
|
118277
|
+
}],
|
|
118278
|
+
[`snowpack@<3.8.6`, {
|
|
118279
|
+
dependencies: {
|
|
118280
|
+
"magic-string": `^0.25.7`
|
|
118281
|
+
}
|
|
118282
|
+
}],
|
|
118283
|
+
[`elm-webpack-loader@*`, {
|
|
118284
|
+
dependencies: {
|
|
118285
|
+
temp: `^0.9.4`
|
|
118286
|
+
}
|
|
118287
|
+
}],
|
|
118288
|
+
[`winston-transport@<=4.4.0`, {
|
|
118289
|
+
dependencies: {
|
|
118290
|
+
logform: `^2.2.0`
|
|
118291
|
+
}
|
|
118292
|
+
}],
|
|
118293
|
+
[`jest-vue-preprocessor@*`, {
|
|
118294
|
+
dependencies: {
|
|
118295
|
+
"@babel/core": `7.8.7`,
|
|
118296
|
+
"@babel/template": `7.8.6`
|
|
118297
|
+
},
|
|
118298
|
+
peerDependencies: {
|
|
118299
|
+
pug: `^2.0.4`
|
|
118300
|
+
},
|
|
118301
|
+
peerDependenciesMeta: {
|
|
118302
|
+
pug: optionalPeerDep
|
|
118303
|
+
}
|
|
118304
|
+
}],
|
|
118305
|
+
[`redux-persist@*`, {
|
|
118306
|
+
peerDependencies: {
|
|
118307
|
+
react: `>=16`
|
|
118308
|
+
},
|
|
118309
|
+
peerDependenciesMeta: {
|
|
118310
|
+
react: optionalPeerDep
|
|
118311
|
+
}
|
|
118312
|
+
}],
|
|
118313
|
+
[`sodium@>=3`, {
|
|
118314
|
+
dependencies: {
|
|
118315
|
+
"node-gyp": `^3.8.0`
|
|
118316
|
+
}
|
|
118317
|
+
}],
|
|
118318
|
+
[`babel-plugin-graphql-tag@<=3.1.0`, {
|
|
118319
|
+
peerDependencies: {
|
|
118320
|
+
graphql: `^14.0.0 || ^15.0.0`
|
|
118321
|
+
}
|
|
118322
|
+
}],
|
|
118323
|
+
[`@playwright/test@<=1.14.1`, {
|
|
118324
|
+
dependencies: {
|
|
118325
|
+
"jest-matcher-utils": `^26.4.2`
|
|
118326
|
+
}
|
|
118327
|
+
}],
|
|
118328
|
+
...[
|
|
118329
|
+
`babel-plugin-remove-graphql-queries@<3.14.0-next.1`,
|
|
118330
|
+
`babel-preset-gatsby-package@<1.14.0-next.1`,
|
|
118331
|
+
`create-gatsby@<1.14.0-next.1`,
|
|
118332
|
+
`gatsby-admin@<0.24.0-next.1`,
|
|
118333
|
+
`gatsby-cli@<3.14.0-next.1`,
|
|
118334
|
+
`gatsby-core-utils@<2.14.0-next.1`,
|
|
118335
|
+
`gatsby-design-tokens@<3.14.0-next.1`,
|
|
118336
|
+
`gatsby-legacy-polyfills@<1.14.0-next.1`,
|
|
118337
|
+
`gatsby-plugin-benchmark-reporting@<1.14.0-next.1`,
|
|
118338
|
+
`gatsby-plugin-graphql-config@<0.23.0-next.1`,
|
|
118339
|
+
`gatsby-plugin-image@<1.14.0-next.1`,
|
|
118340
|
+
`gatsby-plugin-mdx@<2.14.0-next.1`,
|
|
118341
|
+
`gatsby-plugin-netlify-cms@<5.14.0-next.1`,
|
|
118342
|
+
`gatsby-plugin-no-sourcemaps@<3.14.0-next.1`,
|
|
118343
|
+
`gatsby-plugin-page-creator@<3.14.0-next.1`,
|
|
118344
|
+
`gatsby-plugin-preact@<5.14.0-next.1`,
|
|
118345
|
+
`gatsby-plugin-preload-fonts@<2.14.0-next.1`,
|
|
118346
|
+
`gatsby-plugin-schema-snapshot@<2.14.0-next.1`,
|
|
118347
|
+
`gatsby-plugin-styletron@<6.14.0-next.1`,
|
|
118348
|
+
`gatsby-plugin-subfont@<3.14.0-next.1`,
|
|
118349
|
+
`gatsby-plugin-utils@<1.14.0-next.1`,
|
|
118350
|
+
`gatsby-recipes@<0.25.0-next.1`,
|
|
118351
|
+
`gatsby-source-shopify@<5.6.0-next.1`,
|
|
118352
|
+
`gatsby-source-wikipedia@<3.14.0-next.1`,
|
|
118353
|
+
`gatsby-transformer-screenshot@<3.14.0-next.1`,
|
|
118354
|
+
`gatsby-worker@<0.5.0-next.1`
|
|
118355
|
+
].map((descriptorString) => [
|
|
118356
|
+
descriptorString,
|
|
118357
|
+
{
|
|
118358
|
+
dependencies: {
|
|
118359
|
+
"@babel/runtime": `^7.14.8`
|
|
118360
|
+
}
|
|
118361
|
+
}
|
|
118362
|
+
]),
|
|
118363
|
+
[`gatsby-core-utils@<2.14.0-next.1`, {
|
|
118364
|
+
dependencies: {
|
|
118365
|
+
got: `8.3.2`
|
|
118366
|
+
}
|
|
118367
|
+
}],
|
|
118368
|
+
[`gatsby-plugin-gatsby-cloud@<=3.1.0-next.0`, {
|
|
118369
|
+
dependencies: {
|
|
118370
|
+
"gatsby-core-utils": `^2.13.0-next.0`
|
|
118371
|
+
}
|
|
118372
|
+
}],
|
|
118373
|
+
[`gatsby-plugin-gatsby-cloud@<=3.2.0-next.1`, {
|
|
118374
|
+
peerDependencies: {
|
|
118375
|
+
webpack: `*`
|
|
118376
|
+
}
|
|
118377
|
+
}],
|
|
118378
|
+
[`babel-plugin-remove-graphql-queries@<=3.14.0-next.1`, {
|
|
118379
|
+
dependencies: {
|
|
118380
|
+
"gatsby-core-utils": `^2.8.0-next.1`
|
|
118381
|
+
}
|
|
118382
|
+
}],
|
|
118383
|
+
[`gatsby-plugin-netlify@3.13.0-next.1`, {
|
|
118384
|
+
dependencies: {
|
|
118385
|
+
"gatsby-core-utils": `^2.13.0-next.0`
|
|
118386
|
+
}
|
|
118387
|
+
}],
|
|
118388
|
+
[`clipanion-v3-codemod@<=0.2.0`, {
|
|
118389
|
+
peerDependencies: {
|
|
118390
|
+
jscodeshift: `^0.11.0`
|
|
118391
|
+
}
|
|
118392
|
+
}],
|
|
118393
|
+
[`react-live@*`, {
|
|
118394
|
+
peerDependencies: {
|
|
118395
|
+
"react-dom": `*`,
|
|
118396
|
+
react: `*`
|
|
118397
|
+
}
|
|
118398
|
+
}],
|
|
118399
|
+
[`webpack@<4.44.1`, {
|
|
118400
|
+
peerDependenciesMeta: {
|
|
118401
|
+
"webpack-cli": optionalPeerDep,
|
|
118402
|
+
"webpack-command": optionalPeerDep
|
|
118403
|
+
}
|
|
118404
|
+
}],
|
|
118405
|
+
[`webpack@<5.0.0-beta.23`, {
|
|
118406
|
+
peerDependenciesMeta: {
|
|
118407
|
+
"webpack-cli": optionalPeerDep
|
|
118408
|
+
}
|
|
118409
|
+
}],
|
|
118410
|
+
[`webpack-dev-server@<3.10.2`, {
|
|
118411
|
+
peerDependenciesMeta: {
|
|
118412
|
+
"webpack-cli": optionalPeerDep
|
|
118413
|
+
}
|
|
118414
|
+
}],
|
|
118415
|
+
[`@docusaurus/responsive-loader@<1.5.0`, {
|
|
118416
|
+
peerDependenciesMeta: {
|
|
118417
|
+
sharp: optionalPeerDep,
|
|
118418
|
+
jimp: optionalPeerDep
|
|
118419
|
+
}
|
|
118420
|
+
}],
|
|
118421
|
+
[`eslint-module-utils@*`, {
|
|
118422
|
+
peerDependenciesMeta: {
|
|
118423
|
+
"eslint-import-resolver-node": optionalPeerDep,
|
|
118424
|
+
"eslint-import-resolver-typescript": optionalPeerDep,
|
|
118425
|
+
"eslint-import-resolver-webpack": optionalPeerDep,
|
|
118426
|
+
"@typescript-eslint/parser": optionalPeerDep
|
|
118427
|
+
}
|
|
118428
|
+
}],
|
|
118429
|
+
[`eslint-plugin-import@*`, {
|
|
118430
|
+
peerDependenciesMeta: {
|
|
118431
|
+
"@typescript-eslint/parser": optionalPeerDep
|
|
118432
|
+
}
|
|
118433
|
+
}],
|
|
118434
|
+
[`critters-webpack-plugin@<3.0.2`, {
|
|
118435
|
+
peerDependenciesMeta: {
|
|
118436
|
+
"html-webpack-plugin": optionalPeerDep
|
|
118437
|
+
}
|
|
118438
|
+
}],
|
|
118439
|
+
[`terser@<=5.10.0`, {
|
|
118440
|
+
dependencies: {
|
|
118441
|
+
acorn: `^8.5.0`
|
|
118442
|
+
}
|
|
118443
|
+
}],
|
|
118444
|
+
[`babel-preset-react-app@10.0.x`, {
|
|
118445
|
+
dependencies: {
|
|
118446
|
+
"@babel/plugin-proposal-private-property-in-object": `^7.16.0`
|
|
118447
|
+
}
|
|
118448
|
+
}],
|
|
118449
|
+
[`eslint-config-react-app@*`, {
|
|
118450
|
+
peerDependenciesMeta: {
|
|
118451
|
+
typescript: optionalPeerDep
|
|
118452
|
+
}
|
|
118453
|
+
}],
|
|
118454
|
+
[`@vue/eslint-config-typescript@*`, {
|
|
118455
|
+
peerDependenciesMeta: {
|
|
118456
|
+
typescript: optionalPeerDep
|
|
118457
|
+
}
|
|
118458
|
+
}],
|
|
118459
|
+
[`unplugin-vue2-script-setup@<0.9.1`, {
|
|
118460
|
+
peerDependencies: {
|
|
118461
|
+
"@vue/composition-api": `^1.4.3`,
|
|
118462
|
+
"@vue/runtime-dom": `^3.2.26`
|
|
118463
|
+
}
|
|
118464
|
+
}],
|
|
118465
|
+
[`@cypress/snapshot@*`, {
|
|
118466
|
+
dependencies: {
|
|
118467
|
+
debug: `^3.2.7`
|
|
118468
|
+
}
|
|
118469
|
+
}],
|
|
118470
|
+
[`auto-relay@*`, {
|
|
118471
|
+
peerDependencies: {
|
|
118472
|
+
"reflect-metadata": `^0.1.13`
|
|
118473
|
+
}
|
|
118474
|
+
}],
|
|
118475
|
+
[`vue-template-babel-compiler@<1.2.0`, {
|
|
118476
|
+
peerDependencies: {
|
|
118477
|
+
[`vue-template-compiler`]: `^2.6.0`
|
|
118478
|
+
}
|
|
118479
|
+
}],
|
|
118480
|
+
[`@parcel/transformer-image@<2.5.0`, {
|
|
118481
|
+
peerDependencies: {
|
|
118482
|
+
[`@parcel/core`]: `*`
|
|
118483
|
+
}
|
|
118484
|
+
}],
|
|
118485
|
+
[`@parcel/transformer-js@<2.5.0`, {
|
|
118486
|
+
peerDependencies: {
|
|
118487
|
+
[`@parcel/core`]: `*`
|
|
118488
|
+
}
|
|
118489
|
+
}],
|
|
118490
|
+
[`parcel@*`, {
|
|
118491
|
+
peerDependenciesMeta: {
|
|
118492
|
+
[`@parcel/core`]: optionalPeerDep
|
|
118493
|
+
}
|
|
118494
|
+
}],
|
|
118495
|
+
[`react-scripts@*`, {
|
|
118496
|
+
peerDependencies: {
|
|
118497
|
+
[`eslint`]: `*`
|
|
118498
|
+
}
|
|
118499
|
+
}]
|
|
118500
|
+
];
|
|
118501
|
+
}
|
|
118502
|
+
});
|
|
118503
|
+
|
|
117771
118504
|
// ../../node_modules/.pnpm/ramda@0.27.2/node_modules/ramda/src/flatten.js
|
|
117772
118505
|
var require_flatten2 = __commonJS({
|
|
117773
118506
|
"../../node_modules/.pnpm/ramda@0.27.2/node_modules/ramda/src/flatten.js"(exports2, module2) {
|
|
@@ -118985,6 +119718,7 @@ var require_install = __commonJS({
|
|
|
118985
119718
|
var read_project_manifest_1 = require_lib14();
|
|
118986
119719
|
var remove_bins_1 = require_lib93();
|
|
118987
119720
|
var resolve_dependencies_1 = __importStar2(require_lib98());
|
|
119721
|
+
var extensions_1 = require_extensions();
|
|
118988
119722
|
var rimraf_1 = __importDefault(require_rimraf2());
|
|
118989
119723
|
var is_inner_link_1 = __importDefault(require_is_inner_link());
|
|
118990
119724
|
var p_filter_1 = __importDefault(require_p_filter());
|
|
@@ -119017,6 +119751,7 @@ var require_install = __commonJS({
|
|
|
119017
119751
|
buildIndex: 0,
|
|
119018
119752
|
manifest,
|
|
119019
119753
|
mutation: "install",
|
|
119754
|
+
pruneDirectDependencies: opts.pruneDirectDependencies,
|
|
119020
119755
|
rootDir: opts.dir ?? process.cwd()
|
|
119021
119756
|
}
|
|
119022
119757
|
], opts);
|
|
@@ -119054,6 +119789,9 @@ var require_install = __commonJS({
|
|
|
119054
119789
|
}
|
|
119055
119790
|
}
|
|
119056
119791
|
const result2 = await _install();
|
|
119792
|
+
if (global["verifiedFileIntegrity"] > 1e3) {
|
|
119793
|
+
(0, logger_1.globalWarn)(`The integrity of ${global["verifiedFileIntegrity"]} files was checked. This might have caused installation to take longer.`);
|
|
119794
|
+
}
|
|
119057
119795
|
if (reporter != null && typeof reporter === "function") {
|
|
119058
119796
|
logger_1.streamParser.removeListener("data", reporter);
|
|
119059
119797
|
}
|
|
@@ -119290,6 +120028,7 @@ var require_install = __commonJS({
|
|
|
119290
120028
|
if (!(0, isEmpty_1.default)(overrides ?? {})) {
|
|
119291
120029
|
hooks.push((0, createVersionsOverrider_1.default)(overrides, lockfileDir));
|
|
119292
120030
|
}
|
|
120031
|
+
hooks.push((0, createPackageExtender_1.default)((0, fromPairs_1.default)(extensions_1.packageExtensions)));
|
|
119293
120032
|
if (!(0, isEmpty_1.default)(packageExtensions ?? {})) {
|
|
119294
120033
|
hooks.push((0, createPackageExtender_1.default)(packageExtensions));
|
|
119295
120034
|
}
|
|
@@ -120242,6 +120981,7 @@ var require_recursive2 = __commonJS({
|
|
|
120242
120981
|
manifest,
|
|
120243
120982
|
modulesDir,
|
|
120244
120983
|
mutation,
|
|
120984
|
+
pruneDirectDependencies: opts.pruneDirectDependencies,
|
|
120245
120985
|
rootDir
|
|
120246
120986
|
});
|
|
120247
120987
|
}
|
|
@@ -121429,6 +122169,38 @@ var require_link3 = __commonJS({
|
|
|
121429
122169
|
var require_prune3 = __commonJS({
|
|
121430
122170
|
"../plugin-commands-installation/lib/prune.js"(exports2) {
|
|
121431
122171
|
"use strict";
|
|
122172
|
+
var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
122173
|
+
if (k2 === void 0)
|
|
122174
|
+
k2 = k;
|
|
122175
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
122176
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
122177
|
+
desc = { enumerable: true, get: function() {
|
|
122178
|
+
return m[k];
|
|
122179
|
+
} };
|
|
122180
|
+
}
|
|
122181
|
+
Object.defineProperty(o, k2, desc);
|
|
122182
|
+
} : function(o, m, k, k2) {
|
|
122183
|
+
if (k2 === void 0)
|
|
122184
|
+
k2 = k;
|
|
122185
|
+
o[k2] = m[k];
|
|
122186
|
+
});
|
|
122187
|
+
var __setModuleDefault2 = exports2 && exports2.__setModuleDefault || (Object.create ? function(o, v) {
|
|
122188
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
122189
|
+
} : function(o, v) {
|
|
122190
|
+
o["default"] = v;
|
|
122191
|
+
});
|
|
122192
|
+
var __importStar2 = exports2 && exports2.__importStar || function(mod) {
|
|
122193
|
+
if (mod && mod.__esModule)
|
|
122194
|
+
return mod;
|
|
122195
|
+
var result2 = {};
|
|
122196
|
+
if (mod != null) {
|
|
122197
|
+
for (var k in mod)
|
|
122198
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
|
122199
|
+
__createBinding2(result2, mod, k);
|
|
122200
|
+
}
|
|
122201
|
+
__setModuleDefault2(result2, mod);
|
|
122202
|
+
return result2;
|
|
122203
|
+
};
|
|
121432
122204
|
var __importDefault = exports2 && exports2.__importDefault || function(mod) {
|
|
121433
122205
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
121434
122206
|
};
|
|
@@ -121437,11 +122209,9 @@ var require_prune3 = __commonJS({
|
|
|
121437
122209
|
var cli_utils_1 = require_lib22();
|
|
121438
122210
|
var common_cli_options_help_1 = require_lib61();
|
|
121439
122211
|
var config_1 = require_lib15();
|
|
121440
|
-
var store_connection_manager_1 = require_lib70();
|
|
121441
|
-
var core_1 = require_lib101();
|
|
121442
122212
|
var pick_1 = __importDefault(require_pick());
|
|
121443
122213
|
var render_help_1 = __importDefault(require_lib31());
|
|
121444
|
-
var
|
|
122214
|
+
var install = __importStar2(require_install2());
|
|
121445
122215
|
exports2.rcOptionsTypes = cliOptionsTypes;
|
|
121446
122216
|
function cliOptionsTypes() {
|
|
121447
122217
|
return (0, pick_1.default)([
|
|
@@ -121477,28 +122247,11 @@ var require_prune3 = __commonJS({
|
|
|
121477
122247
|
}
|
|
121478
122248
|
exports2.help = help;
|
|
121479
122249
|
async function handler(opts) {
|
|
121480
|
-
|
|
121481
|
-
const manifest = await (0, cli_utils_1.readProjectManifestOnly)(process.cwd(), opts);
|
|
121482
|
-
return (0, core_1.mutateModules)([
|
|
121483
|
-
{
|
|
121484
|
-
buildIndex: 0,
|
|
121485
|
-
manifest,
|
|
121486
|
-
mutation: "install",
|
|
121487
|
-
pruneDirectDependencies: true,
|
|
121488
|
-
rootDir: process.cwd()
|
|
121489
|
-
}
|
|
121490
|
-
], {
|
|
122250
|
+
return install.handler({
|
|
121491
122251
|
...opts,
|
|
121492
|
-
...(0, getOptionsFromRootManifest_1.default)(opts.rootProjectManifest ?? {}),
|
|
121493
|
-
include: {
|
|
121494
|
-
dependencies: opts.production !== false,
|
|
121495
|
-
devDependencies: opts.dev !== false,
|
|
121496
|
-
optionalDependencies: opts.optional !== false
|
|
121497
|
-
},
|
|
121498
122252
|
modulesCacheMaxAge: 0,
|
|
121499
|
-
|
|
121500
|
-
|
|
121501
|
-
storeDir: store.dir
|
|
122253
|
+
pruneDirectDependencies: true,
|
|
122254
|
+
pruneStore: true
|
|
121502
122255
|
});
|
|
121503
122256
|
}
|
|
121504
122257
|
exports2.handler = handler;
|
|
@@ -147327,9 +148080,9 @@ var require_json_buffer = __commonJS({
|
|
|
147327
148080
|
}
|
|
147328
148081
|
});
|
|
147329
148082
|
|
|
147330
|
-
// ../../node_modules/.pnpm/compress-brotli@1.3.
|
|
148083
|
+
// ../../node_modules/.pnpm/compress-brotli@1.3.8/node_modules/compress-brotli/src/merge-options.js
|
|
147331
148084
|
var require_merge_options = __commonJS({
|
|
147332
|
-
"../../node_modules/.pnpm/compress-brotli@1.3.
|
|
148085
|
+
"../../node_modules/.pnpm/compress-brotli@1.3.8/node_modules/compress-brotli/src/merge-options.js"(exports2, module2) {
|
|
147333
148086
|
"use strict";
|
|
147334
148087
|
module2.exports = (defaultOptions = {}, options = {}) => {
|
|
147335
148088
|
const params = {
|
|
@@ -147347,9 +148100,9 @@ var require_merge_options = __commonJS({
|
|
|
147347
148100
|
}
|
|
147348
148101
|
});
|
|
147349
148102
|
|
|
147350
|
-
// ../../node_modules/.pnpm/compress-brotli@1.3.
|
|
148103
|
+
// ../../node_modules/.pnpm/compress-brotli@1.3.8/node_modules/compress-brotli/src/index.js
|
|
147351
148104
|
var require_src7 = __commonJS({
|
|
147352
|
-
"../../node_modules/.pnpm/compress-brotli@1.3.
|
|
148105
|
+
"../../node_modules/.pnpm/compress-brotli@1.3.8/node_modules/compress-brotli/src/index.js"(exports2, module2) {
|
|
147353
148106
|
"use strict";
|
|
147354
148107
|
var { promisify } = require("util");
|
|
147355
148108
|
var JSONB = require_json_buffer();
|
|
@@ -170242,6 +170995,7 @@ var require_pack3 = __commonJS({
|
|
|
170242
170995
|
var fs_1 = __importDefault(require("fs"));
|
|
170243
170996
|
var path_1 = __importDefault(require("path"));
|
|
170244
170997
|
var zlib_1 = require("zlib");
|
|
170998
|
+
var error_1 = __importDefault(require_lib8());
|
|
170245
170999
|
var config_1 = require_lib15();
|
|
170246
171000
|
var cli_utils_1 = require_lib22();
|
|
170247
171001
|
var exportable_manifest_1 = __importDefault(require_lib115());
|
|
@@ -170291,7 +171045,7 @@ var require_pack3 = __commonJS({
|
|
|
170291
171045
|
}
|
|
170292
171046
|
exports2.help = help;
|
|
170293
171047
|
async function handler(opts) {
|
|
170294
|
-
const { manifest: entryManifest } = await (0, cli_utils_1.readProjectManifest)(opts.dir, opts);
|
|
171048
|
+
const { manifest: entryManifest, fileName: manifestFileName } = await (0, cli_utils_1.readProjectManifest)(opts.dir, opts);
|
|
170295
171049
|
const _runScriptsIfPresent = publish_1.runScriptsIfPresent.bind(null, {
|
|
170296
171050
|
depPath: opts.dir,
|
|
170297
171051
|
extraBinPaths: opts.extraBinPaths,
|
|
@@ -170311,6 +171065,12 @@ var require_pack3 = __commonJS({
|
|
|
170311
171065
|
}
|
|
170312
171066
|
const dir = entryManifest.publishConfig?.directory ? path_1.default.join(opts.dir, entryManifest.publishConfig.directory) : opts.dir;
|
|
170313
171067
|
const manifest = opts.dir !== dir ? (await (0, cli_utils_1.readProjectManifest)(dir, opts)).manifest : entryManifest;
|
|
171068
|
+
if (!manifest.name) {
|
|
171069
|
+
throw new error_1.default("PACKAGE_NAME_NOT_FOUND", `Package name is not defined in the ${manifestFileName}.`);
|
|
171070
|
+
}
|
|
171071
|
+
if (!manifest.version) {
|
|
171072
|
+
throw new error_1.default("PACKAGE_VERSION_NOT_FOUND", `Package version is not defined in the ${manifestFileName}.`);
|
|
171073
|
+
}
|
|
170314
171074
|
const tarballName = `${manifest.name.replace("@", "").replace("/", "-")}-${manifest.version}.tgz`;
|
|
170315
171075
|
const files = await (0, npm_packlist_1.default)({ path: dir });
|
|
170316
171076
|
const filesMap = (0, fromPairs_1.default)(files.map((file) => [`package/${file}`, path_1.default.join(dir, file)]));
|
|
@@ -170452,11 +171212,14 @@ var require_dlx = __commonJS({
|
|
|
170452
171212
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
170453
171213
|
exports2.handler = exports2.help = exports2.cliOptionsTypes = exports2.rcOptionsTypes = exports2.commandNames = void 0;
|
|
170454
171214
|
var fs_1 = __importDefault(require("fs"));
|
|
170455
|
-
var os_1 = __importDefault(require("os"));
|
|
170456
171215
|
var path_1 = __importDefault(require("path"));
|
|
170457
171216
|
var cli_utils_1 = require_lib22();
|
|
170458
171217
|
var common_cli_options_help_1 = require_lib61();
|
|
170459
|
-
var
|
|
171218
|
+
var error_1 = __importDefault(require_lib8());
|
|
171219
|
+
var plugin_commands_installation_1 = require_lib110();
|
|
171220
|
+
var read_package_json_1 = require_lib35();
|
|
171221
|
+
var package_bins_1 = __importDefault(require_lib80());
|
|
171222
|
+
var store_path_1 = __importDefault(require_lib34());
|
|
170460
171223
|
var execa_1 = __importDefault(require_lib18());
|
|
170461
171224
|
var render_help_1 = __importDefault(require_lib31());
|
|
170462
171225
|
var makeEnv_1 = require_makeEnv();
|
|
@@ -170489,9 +171252,15 @@ var require_dlx = __commonJS({
|
|
|
170489
171252
|
});
|
|
170490
171253
|
}
|
|
170491
171254
|
exports2.help = help;
|
|
170492
|
-
async function handler(opts,
|
|
170493
|
-
const
|
|
170494
|
-
|
|
171255
|
+
async function handler(opts, [command, ...args2]) {
|
|
171256
|
+
const dlxDir = await getDlxDir({
|
|
171257
|
+
dir: opts.dir,
|
|
171258
|
+
pnpmHomeDir: opts.pnpmHomeDir,
|
|
171259
|
+
storeDir: opts.storeDir
|
|
171260
|
+
});
|
|
171261
|
+
const prefix = path_1.default.join(dlxDir, `dlx-${process.pid.toString()}`);
|
|
171262
|
+
const modulesDir = path_1.default.join(prefix, "node_modules");
|
|
171263
|
+
const binsDir = path_1.default.join(modulesDir, ".bin");
|
|
170495
171264
|
fs_1.default.mkdirSync(prefix, { recursive: true });
|
|
170496
171265
|
process.on("exit", () => {
|
|
170497
171266
|
try {
|
|
@@ -170502,38 +171271,60 @@ var require_dlx = __commonJS({
|
|
|
170502
171271
|
} catch (err) {
|
|
170503
171272
|
}
|
|
170504
171273
|
});
|
|
170505
|
-
|
|
170506
|
-
const
|
|
170507
|
-
|
|
170508
|
-
|
|
170509
|
-
|
|
170510
|
-
|
|
170511
|
-
|
|
170512
|
-
|
|
170513
|
-
|
|
170514
|
-
];
|
|
170515
|
-
if (opts.reporter) {
|
|
170516
|
-
pnpmArgs.push(`--reporter=${opts.reporter}`);
|
|
170517
|
-
}
|
|
170518
|
-
const env = (0, makeEnv_1.makeEnv)({ userAgent: opts.userAgent, prependPaths: [bins] });
|
|
170519
|
-
await (0, execa_1.default)("pnpm", pnpmArgs, {
|
|
170520
|
-
env,
|
|
170521
|
-
stdio: "inherit"
|
|
170522
|
-
});
|
|
170523
|
-
await (0, execa_1.default)(versionless(scopeless(params[0])), params.slice(1), {
|
|
171274
|
+
const pkgs = opts.package ?? [command];
|
|
171275
|
+
const env = (0, makeEnv_1.makeEnv)({ userAgent: opts.userAgent, prependPaths: [binsDir] });
|
|
171276
|
+
await plugin_commands_installation_1.add.handler({
|
|
171277
|
+
...opts,
|
|
171278
|
+
dir: prefix,
|
|
171279
|
+
bin: binsDir
|
|
171280
|
+
}, pkgs);
|
|
171281
|
+
const binName = opts.package ? command : await getBinName(modulesDir, versionless(command));
|
|
171282
|
+
await (0, execa_1.default)(binName, args2, {
|
|
170524
171283
|
env,
|
|
170525
171284
|
stdio: "inherit"
|
|
170526
171285
|
});
|
|
170527
171286
|
}
|
|
170528
171287
|
exports2.handler = handler;
|
|
171288
|
+
async function getBinName(modulesDir, pkgName) {
|
|
171289
|
+
const pkgDir = path_1.default.join(modulesDir, pkgName);
|
|
171290
|
+
const manifest = await (0, read_package_json_1.fromDir)(pkgDir);
|
|
171291
|
+
const bins = await (0, package_bins_1.default)(manifest, pkgDir);
|
|
171292
|
+
if (bins.length === 0) {
|
|
171293
|
+
throw new error_1.default("DLX_NO_BIN", `No binaries found in ${pkgName}`);
|
|
171294
|
+
}
|
|
171295
|
+
if (bins.length === 1) {
|
|
171296
|
+
return bins[0].name;
|
|
171297
|
+
}
|
|
171298
|
+
const scopelessPkgName = scopeless(manifest.name);
|
|
171299
|
+
const defaultBin = bins.find(({ name }) => name === scopelessPkgName);
|
|
171300
|
+
if (defaultBin)
|
|
171301
|
+
return defaultBin.name;
|
|
171302
|
+
const binNames = bins.map(({ name }) => name);
|
|
171303
|
+
throw new error_1.default("DLX_MULTIPLE_BINS", `Could not determine executable to run. ${pkgName} has multiple binaries: ${binNames.join(", ")}`, {
|
|
171304
|
+
hint: `Try one of the following:
|
|
171305
|
+
${binNames.map((name) => `pnpm --package=${pkgName} dlx ${name}`).join("\n")}
|
|
171306
|
+
`
|
|
171307
|
+
});
|
|
171308
|
+
}
|
|
170529
171309
|
function scopeless(pkgName) {
|
|
170530
171310
|
if (pkgName.startsWith("@")) {
|
|
170531
171311
|
return pkgName.split("/")[1];
|
|
170532
171312
|
}
|
|
170533
171313
|
return pkgName;
|
|
170534
171314
|
}
|
|
170535
|
-
function versionless(
|
|
170536
|
-
|
|
171315
|
+
function versionless(pkgName) {
|
|
171316
|
+
const index = pkgName.indexOf("@", 1);
|
|
171317
|
+
if (index === -1)
|
|
171318
|
+
return pkgName;
|
|
171319
|
+
return pkgName.substring(0, index);
|
|
171320
|
+
}
|
|
171321
|
+
async function getDlxDir(opts) {
|
|
171322
|
+
const storeDir = await (0, store_path_1.default)({
|
|
171323
|
+
pkgRoot: opts.dir,
|
|
171324
|
+
storePath: opts.storeDir,
|
|
171325
|
+
pnpmHomeDir: opts.pnpmHomeDir
|
|
171326
|
+
});
|
|
171327
|
+
return path_1.default.join(storeDir, "tmp");
|
|
170537
171328
|
}
|
|
170538
171329
|
}
|
|
170539
171330
|
});
|
|
@@ -170590,7 +171381,7 @@ var require_create4 = __commonJS({
|
|
|
170590
171381
|
throw new error_1.default("MISSING_ARGS", "Missing the template package name.\nThe correct usage is `pnpm create <name>` with <name> substituted for a package name.");
|
|
170591
171382
|
}
|
|
170592
171383
|
const createPackageName = convertToCreateName(packageName);
|
|
170593
|
-
return dlx.handler(
|
|
171384
|
+
return dlx.handler(_opts, [createPackageName, ...packageArgs]);
|
|
170594
171385
|
}
|
|
170595
171386
|
exports2.handler = handler;
|
|
170596
171387
|
function rcOptionsTypes() {
|
|
@@ -172878,7 +173669,12 @@ var require_init = __commonJS({
|
|
|
172878
173669
|
});
|
|
172879
173670
|
}
|
|
172880
173671
|
exports2.help = help;
|
|
172881
|
-
async function handler(opts) {
|
|
173672
|
+
async function handler(opts, params) {
|
|
173673
|
+
if (params?.length) {
|
|
173674
|
+
throw new error_1.default("INIT_ARG", "init command does not accept any arguments", {
|
|
173675
|
+
hint: `Maybe you wanted to run "pnpm create ${params.join(" ")}"`
|
|
173676
|
+
});
|
|
173677
|
+
}
|
|
172882
173678
|
const manifestPath = path_1.default.join(process.cwd(), "package.json");
|
|
172883
173679
|
if (fs_1.default.existsSync(manifestPath)) {
|
|
172884
173680
|
throw new error_1.default("PACKAGE_JSON_EXISTS", "package.json already exists");
|