@rushstack/lockfile-explorer 1.4.9 → 1.4.11
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commandLine.test.js","sourceRoot":"","sources":["../src/commandLine.test.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;AAE3D,+CAAiD;AAEjD,QAAQ,CAAC,aAAa,EAAE,GAAG,EAAE;IAC3B,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;QAClC,EAAE,CAAC,qCAAqC,EAAE,KAAK,IAAI,EAAE;YACnD,MAAM,MAAM,GAAG,IAAA,8BAAgB,EAAC,CAAC,QAAQ,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"commandLine.test.js","sourceRoot":"","sources":["../src/commandLine.test.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;AAE3D,+CAAiD;AAEjD,QAAQ,CAAC,aAAa,EAAE,GAAG,EAAE;IAC3B,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;QAClC,EAAE,CAAC,qCAAqC,EAAE,KAAK,IAAI,EAAE;YACnD,MAAM,MAAM,GAAG,IAAA,8BAAgB,EAAC,CAAC,QAAQ,CAAC,CAAC,CAAC;YAC5C,MAAM,CAAC,MAAM,CAAC,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;QACpD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,yCAAyC,EAAE,KAAK,IAAI,EAAE;YACvD,MAAM,MAAM,GAAG,IAAA,8BAAgB,EAAC,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC,CAAC;YAC1D,MAAM,CAAC,MAAM,CAAC,CAAC,cAAc,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QACtD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,8CAA8C,EAAE,KAAK,IAAI,EAAE;YAC5D,MAAM,MAAM,GAAG,IAAA,8BAAgB,EAAC,CAAC,YAAY,CAAC,CAAC,CAAC;YAChD,MAAM,CAAC,MAAM,CAAC,CAAC,cAAc,CAAC,OAAO,EAAE,uCAAuC,CAAC,CAAC;QAClF,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC","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 { parseCommandLine } from './commandLine';\n\ndescribe('commandLine', () => {\n describe('parseCommandLine()', () => {\n it('sets showHelp when --help specified', async () => {\n const result = parseCommandLine(['--help']);\n expect(result).toHaveProperty('showedHelp', true);\n });\n\n it('sets subspace when --subspace specified', async () => {\n const result = parseCommandLine(['--subspace', 'wallet']);\n expect(result).toHaveProperty('subspace', 'wallet');\n });\n\n it('sets error when --subspace value not missing', async () => {\n const result = parseCommandLine(['--subspace']);\n expect(result).toHaveProperty('error', 'Expecting argument after \"--subspace\"');\n });\n });\n});\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/lockfile-explorer",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.11",
|
|
4
4
|
"description": "Rush Lockfile Explorer: The UI for solving version conflicts quickly in a large monorepo",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"conflict",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"@types/js-yaml": "3.12.1",
|
|
43
43
|
"@types/update-notifier": "~6.0.1",
|
|
44
44
|
"@pnpm/lockfile-types": "~6.0.0",
|
|
45
|
-
"@rushstack/heft": "0.66.10",
|
|
46
45
|
"@rushstack/lockfile-explorer-web": "0.0.0",
|
|
47
|
-
"local-node-rig": "1.0.0"
|
|
46
|
+
"local-node-rig": "1.0.0",
|
|
47
|
+
"@rushstack/heft": "0.66.12"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"cors": "~2.8.5",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"update-notifier": "~5.1.0",
|
|
55
55
|
"@pnpm/dependency-path": "~2.1.2",
|
|
56
56
|
"@microsoft/rush-lib": "5.124.7",
|
|
57
|
-
"@rushstack/
|
|
58
|
-
"@rushstack/
|
|
57
|
+
"@rushstack/terminal": "0.12.0",
|
|
58
|
+
"@rushstack/node-core-library": "5.1.0"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"build": "heft build --clean",
|