@rushstack/rush-resolver-cache-plugin 5.160.1 → 5.162.0
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/tsdoc-metadata.json
CHANGED
package/lib/externals.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"externals.d.ts","sourceRoot":"","sources":["../src/externals.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,IAAI,aAAa,EAAE,eAAe,IAAI,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAC9G,OAAO,KAAK,EAAE,kBAAkB,IAAI,sBAAsB,EAAE,MAAM,uDAAuD,CAAC;
|
|
1
|
+
{"version":3,"file":"externals.d.ts","sourceRoot":"","sources":["../src/externals.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,SAAS,IAAI,aAAa,EAAE,eAAe,IAAI,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAC9G,OAAO,KAAK,EAAE,kBAAkB,IAAI,sBAAsB,EAAE,MAAM,uDAAuD,CAAC;AAM1H,QAAA,MAAQ,SAAS,wBAAE,eAAe,4BAA4B,CAAC;AAE/D,KAAK,SAAS,GAAG,aAAa,CAAC;AAE/B,KAAK,eAAe,GAAG,mBAAmB,CAAC;AAE3C,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,CAAC;AAmBtC,eAAO,MAAQ,kBAAkB,+BAEyB,CAAC;AAE3D,MAAM,MAAM,kBAAkB,GAAG,sBAAsB,CAAC;AAGxD,eAAO,MAAQ,KAAK,+DAEnB,CAAC;AACF,eAAO,MAAQ,UAAU,yEAExB,CAAC"}
|
package/lib/externals.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"externals.js","sourceRoot":"","sources":["../src/externals.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;
|
|
1
|
+
{"version":3,"file":"externals.js","sourceRoot":"","sources":["../src/externals.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;AAS3D,MAAM,EAAE,SAAS,EAAE,eAAe,EAAE,GAAG,uBAAuB,CAAC;AAMtD,8BAAS;AAAE,0CAAe;AAEnC,uCAAuC;AACvC,MAAM,GAAG,GAAmB,OAAO,uBAAuB,KAAK,UAAU,CAAC,CAAC,CAAC,uBAAuB,CAAC,CAAC,CAAC,OAAO,CAAC;AAE9G,MAAM,WAAW,GAAuB,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC;AAEnE,SAAS,gBAAgB,CAAU,IAAY;IAC7C,IAAI,CAAC,WAAW,EAAE,CAAC;QACjB,MAAM,IAAI,KAAK,CAAC,8DAA8D,CAAC,CAAC;IAClF,CAAC;IACD,MAAM,YAAY,GAAW,GAAG,CAAC,OAAO,CAAC,IAAI,EAAE;QAC7C,KAAK,EAAE,CAAC,WAAW,CAAC;KACrB,CAAC,CAAC;IAEH,OAAO,GAAG,CAAC,YAAY,CAAC,CAAC;AAC3B,CAAC;AAED,oBAAoB;AACL,0BAAkB,GAAK,gBAAgB,CAEpD,uDAAuD,CAAC,oBAAC;AAI3D,8DAA8D;AAC/C,aAAK,GAAK,gBAAgB,CACvC,wCAAwC,CACzC,OAAC;AACa,kBAAU,GAAK,gBAAgB,CAC5C,6CAA6C,CAC9C,YAAC","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport type { Operation as OperationType, OperationStatus as OperationStatusType } from '@rushstack/rush-sdk';\nimport type { PnpmShrinkwrapFile as PnpmShrinkwrapFileType } from '@rushstack/rush-sdk/lib/logic/pnpm/PnpmShrinkwrapFile';\n\n// Ultra-cheap \"I am a Rush plugin\" import of rush-lib\n// eslint-disable-next-line @typescript-eslint/naming-convention\ndeclare const ___rush___rushLibModule: typeof import('@rushstack/rush-sdk');\n\nconst { Operation, OperationStatus } = ___rush___rushLibModule;\n// eslint-disable-next-line @typescript-eslint/no-redeclare\ntype Operation = OperationType;\n// eslint-disable-next-line @typescript-eslint/no-redeclare\ntype OperationStatus = OperationStatusType;\n\nexport { Operation, OperationStatus };\n\n// Support this plugin being webpacked.\nconst req: typeof require = typeof __non_webpack_require__ === 'function' ? __non_webpack_require__ : require;\n\nconst rushLibPath: string | undefined = process.env._RUSH_LIB_PATH;\n\nfunction importDependency<TResult>(name: string): TResult {\n if (!rushLibPath) {\n throw new Error(`_RUSH_LIB_PATH variable is not set, cannot resolve rush-lib.`);\n }\n const externalPath: string = req.resolve(name, {\n paths: [rushLibPath]\n });\n\n return req(externalPath);\n}\n\n// Private Rush APIs\nexport const { PnpmShrinkwrapFile } = importDependency<\n typeof import('@rushstack/rush-sdk/lib/logic/pnpm/PnpmShrinkwrapFile')\n>('@microsoft/rush-lib/lib/logic/pnpm/PnpmShrinkwrapFile');\n// eslint-disable-next-line @typescript-eslint/no-redeclare\nexport type PnpmShrinkwrapFile = PnpmShrinkwrapFileType;\n\n// Avoid bundling expensive stuff that's already part of Rush.\nexport const { Async } = importDependency<typeof import('@rushstack/node-core-library/lib/Async')>(\n `@rushstack/node-core-library/lib/Async`\n);\nexport const { FileSystem } = importDependency<typeof import('@rushstack/node-core-library/lib/FileSystem')>(\n `@rushstack/node-core-library/lib/FileSystem`\n);\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-resolver-cache-plugin",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.162.0",
|
|
4
4
|
"description": "A Rush plugin that generates a resolver cache file after successful install.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -11,17 +11,17 @@
|
|
|
11
11
|
"main": "lib-commonjs/index.js",
|
|
12
12
|
"types": "dist/rush-resolver-cache-plugin.d.ts",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@rushstack/rush-sdk": "5.
|
|
14
|
+
"@rushstack/rush-sdk": "5.162.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/webpack-env": "1.18.8",
|
|
18
|
-
"eslint": "~9.
|
|
19
|
-
"@rushstack/heft": "1.1.
|
|
20
|
-
"@rushstack/
|
|
21
|
-
"@rushstack/
|
|
22
|
-
"
|
|
23
|
-
"@rushstack/webpack-workspace-resolve-plugin": "0.5.
|
|
24
|
-
"
|
|
18
|
+
"eslint": "~9.37.0",
|
|
19
|
+
"@rushstack/heft": "1.1.1",
|
|
20
|
+
"@rushstack/node-core-library": "5.17.0",
|
|
21
|
+
"@rushstack/lookup-by-path": "0.8.3",
|
|
22
|
+
"@rushstack/terminal": "0.19.1",
|
|
23
|
+
"@rushstack/webpack-workspace-resolve-plugin": "0.5.1",
|
|
24
|
+
"local-node-rig": "1.0.0"
|
|
25
25
|
},
|
|
26
26
|
"exports": {
|
|
27
27
|
".": {
|