@rushstack/lockfile-explorer 2.0.8 → 2.1.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/CHANGELOG.json +24 -0
- package/CHANGELOG.md +15 -1
- package/build/lfx-shared/index.d.ts +4 -4
- package/build/lfx-shared/index.js +8 -5
- package/build/lfx-shared/index.js.map +1 -1
- package/dist/465.a3ac9b5b22a59b48e24b.js +2 -0
- package/dist/465.a3ac9b5b22a59b48e24b.js.LICENSE.txt +62 -0
- package/dist/app.1ccea3e6f1053bef7069.js +1 -0
- package/dist/index.html +1 -1
- package/dist/rush-themed-ui.js +3 -2
- package/dist/rush-themed-ui.js.LICENSE.txt +9 -0
- package/package.json +7 -7
- package/dist/531.0e5a24ca1399529aa975.js +0 -2
- package/dist/531.0e5a24ca1399529aa975.js.LICENSE.txt +0 -84
- package/dist/app.9d79482549580f813d48.js +0 -1
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/lockfile-explorer",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "2.1.0",
|
|
6
|
+
"tag": "@rushstack/lockfile-explorer_v2.1.0",
|
|
7
|
+
"date": "Mon, 29 Dec 2025 16:12:51 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Bump React to v19."
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"version": "2.0.9",
|
|
18
|
+
"tag": "@rushstack/lockfile-explorer_v2.0.9",
|
|
19
|
+
"date": "Wed, 24 Dec 2025 01:12:52 GMT",
|
|
20
|
+
"comments": {
|
|
21
|
+
"patch": [
|
|
22
|
+
{
|
|
23
|
+
"comment": "Use pnpm dependency path implementation from `@rushstack/rush-pnpm-kit-v8`"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
4
28
|
{
|
|
5
29
|
"version": "2.0.8",
|
|
6
30
|
"tag": "@rushstack/lockfile-explorer_v2.0.8",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# Change Log - @rushstack/lockfile-explorer
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Mon, 29 Dec 2025 16:12:51 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 2.1.0
|
|
6
|
+
Mon, 29 Dec 2025 16:12:51 GMT
|
|
7
|
+
|
|
8
|
+
### Minor changes
|
|
9
|
+
|
|
10
|
+
- Bump React to v19.
|
|
11
|
+
|
|
12
|
+
## 2.0.9
|
|
13
|
+
Wed, 24 Dec 2025 01:12:52 GMT
|
|
14
|
+
|
|
15
|
+
### Patches
|
|
16
|
+
|
|
17
|
+
- Use pnpm dependency path implementation from `@rushstack/rush-pnpm-kit-v8`
|
|
4
18
|
|
|
5
19
|
## 2.0.8
|
|
6
20
|
Sat, 06 Dec 2025 01:12:28 GMT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
1
|
+
export type { IAppContext } from './IAppContext';
|
|
2
|
+
export { LfxGraphEntryKind, LfxDependencyKind, type IJsonPeerDependencyMeta, type IJsonLfxDependency, type IJsonLfxEntry, type IJsonLfxGraph } from './IJsonLfxGraph';
|
|
3
|
+
export type { IJsonLfxWorkspaceRushConfig, IJsonLfxWorkspace } from './IJsonLfxWorkspace';
|
|
4
|
+
export { LfxGraph, LfxGraphDependency, LfxGraphEntry, type ILfxGraphDependencyOptions, type ILfxGraphEntryOptions } from './LfxGraph';
|
|
5
5
|
export * as lfxGraphSerializer from './lfxGraphSerializer';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
3
3
|
// See LICENSE in the project root for license information.
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.lfxGraphSerializer = void 0;
|
|
5
|
+
exports.lfxGraphSerializer = exports.LfxGraphEntry = exports.LfxGraphDependency = exports.LfxGraph = exports.LfxDependencyKind = exports.LfxGraphEntryKind = void 0;
|
|
6
6
|
const tslib_1 = require("tslib");
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
var IJsonLfxGraph_1 = require("./IJsonLfxGraph");
|
|
8
|
+
Object.defineProperty(exports, "LfxGraphEntryKind", { enumerable: true, get: function () { return IJsonLfxGraph_1.LfxGraphEntryKind; } });
|
|
9
|
+
Object.defineProperty(exports, "LfxDependencyKind", { enumerable: true, get: function () { return IJsonLfxGraph_1.LfxDependencyKind; } });
|
|
10
|
+
var LfxGraph_1 = require("./LfxGraph");
|
|
11
|
+
Object.defineProperty(exports, "LfxGraph", { enumerable: true, get: function () { return LfxGraph_1.LfxGraph; } });
|
|
12
|
+
Object.defineProperty(exports, "LfxGraphDependency", { enumerable: true, get: function () { return LfxGraph_1.LfxGraphDependency; } });
|
|
13
|
+
Object.defineProperty(exports, "LfxGraphEntry", { enumerable: true, get: function () { return LfxGraph_1.LfxGraphEntry; } });
|
|
11
14
|
exports.lfxGraphSerializer = tslib_1.__importStar(require("./lfxGraphSerializer"));
|
|
12
15
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/packlets/lfx-shared/index.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/packlets/lfx-shared/index.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;;AAG3D,iDAOyB;AANvB,kHAAA,iBAAiB,OAAA;AACjB,kHAAA,iBAAiB,OAAA;AAOnB,uCAMoB;AALlB,oGAAA,QAAQ,OAAA;AACR,8GAAA,kBAAkB,OAAA;AAClB,yGAAA,aAAa,OAAA;AAIf,mFAA2D","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nexport type { IAppContext } from './IAppContext';\nexport {\n LfxGraphEntryKind,\n LfxDependencyKind,\n type IJsonPeerDependencyMeta,\n type IJsonLfxDependency,\n type IJsonLfxEntry,\n type IJsonLfxGraph\n} from './IJsonLfxGraph';\nexport type { IJsonLfxWorkspaceRushConfig, IJsonLfxWorkspace } from './IJsonLfxWorkspace';\nexport {\n LfxGraph,\n LfxGraphDependency,\n LfxGraphEntry,\n type ILfxGraphDependencyOptions,\n type ILfxGraphEntryOptions\n} from './LfxGraph';\nexport * as lfxGraphSerializer from './lfxGraphSerializer';\n"]}
|