@budsbox/constraints 2.0.2 → 2.1.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/cjs/base.d.ts +36 -2
- package/dist/cjs/base.js +45 -9
- package/dist/cjs/dependencies/peer.d.ts +71 -2
- package/dist/cjs/dependencies/peer.js +90 -52
- package/dist/cjs/dependencies/root.d.ts +8 -2
- package/dist/cjs/dependencies/root.js +20 -14
- package/dist/cjs/dependencies/workspace.d.ts +17 -0
- package/dist/cjs/dependencies/workspace.js +30 -3
- package/dist/cjs/esm.js +3 -2
- package/dist/cjs/utils.d.ts +67 -11
- package/dist/cjs/utils.js +52 -20
- package/package.json +36 -23
- package/dist/cjs/base.d.ts.map +0 -1
- package/dist/cjs/base.js.map +0 -1
- package/dist/cjs/dependencies/index.d.ts.map +0 -1
- package/dist/cjs/dependencies/index.js.map +0 -1
- package/dist/cjs/dependencies/peer.d.ts.map +0 -1
- package/dist/cjs/dependencies/peer.js.map +0 -1
- package/dist/cjs/dependencies/root.d.ts.map +0 -1
- package/dist/cjs/dependencies/root.js.map +0 -1
- package/dist/cjs/dependencies/workspace.d.ts.map +0 -1
- package/dist/cjs/dependencies/workspace.js.map +0 -1
- package/dist/cjs/esm.d.ts.map +0 -1
- package/dist/cjs/esm.js.map +0 -1
- package/dist/cjs/index.d.ts.map +0 -1
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/utils.d.ts.map +0 -1
- package/dist/cjs/utils.js.map +0 -1
- package/dist/tsconfig.lib.tsbuildinfo +0 -1
package/dist/cjs/base.d.ts
CHANGED
|
@@ -1,6 +1,40 @@
|
|
|
1
|
-
import { type ConstraintFactory } from './utils';
|
|
2
|
-
|
|
1
|
+
import { type Constraint, type ConstraintFactory } from './utils';
|
|
2
|
+
/**
|
|
3
|
+
* The `constraintPackageName` variable is a constraint function that performs
|
|
4
|
+
* validation and modification on package names within a monorepo managed by Yarn.
|
|
5
|
+
*
|
|
6
|
+
* This function ensures that each workspace within the root workspace has a
|
|
7
|
+
* valid package name, and enforces a naming convention where the namespace (scope)
|
|
8
|
+
* of the root package is applied to any workspace whose package name lacks a namespace.
|
|
9
|
+
*
|
|
10
|
+
* Behavior:
|
|
11
|
+
* - Validates that the root package has a defined name in its `package.json` file.
|
|
12
|
+
* If the name is missing, an error is logged.
|
|
13
|
+
* - Extracts the namespace (scope) from the root package's name, if one exists.
|
|
14
|
+
* - Iterates over all Yarn workspaces and checks each workspace's package name:
|
|
15
|
+
* - If a workspace has no name defined in its `package.json`, an error is logged.
|
|
16
|
+
* - If a workspace's package name lacks a namespace, the root's namespace is
|
|
17
|
+
* applied to it as a prefix, and the name is updated accordingly.
|
|
18
|
+
*
|
|
19
|
+
* @param Yarn - The Yarn API instance, which provides access to the root workspace
|
|
20
|
+
* and all associated workspaces for validation and name modifications.
|
|
21
|
+
*/
|
|
3
22
|
export declare const constraintPackageName: Constraint;
|
|
23
|
+
/**
|
|
24
|
+
* A function that creates a constraint to enforce specific fields in the package manifests across multiple workspaces.
|
|
25
|
+
* This ensures the consistency of `sharedFields` in all workspace manifests by aligning them with the root workspace's manifest
|
|
26
|
+
* and validates that `requiredFields` are present in each workspace manifest. If a required field is missing and a default
|
|
27
|
+
* value is provided, it will be added. Otherwise, an error will be reported.
|
|
28
|
+
*
|
|
29
|
+
* @param options - The options object of constraint.
|
|
30
|
+
* @param options.sharedFields - A list of fields that need to be shared across all workspace manifests. Each workspace will inherit the
|
|
31
|
+
* corresponding values from the root workspace's manifest for these fields.
|
|
32
|
+
* @param options.requiredFields - An optional list of fields that must be present in each workspace manifest. Each field can either
|
|
33
|
+
* be:
|
|
34
|
+
* - A string indicating just the field name, in which case it is checked for existence and an error is raised if it is missing.
|
|
35
|
+
* - A tuple where the first element is the field name and the second element is the default value to be added if the field is missing.
|
|
36
|
+
* @returns A constraint function that can be applied to validate and enforce the specified manifest fields in all workspaces.
|
|
37
|
+
*/
|
|
4
38
|
export declare const createManifestFieldsConstraint: ConstraintFactory<{
|
|
5
39
|
readonly sharedFields: readonly string[];
|
|
6
40
|
readonly requiredFields?: ReadonlyArray<string | [string, unknown]>;
|
package/dist/cjs/base.js
CHANGED
|
@@ -1,34 +1,70 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createManifestFieldsConstraint = exports.constraintPackageName = void 0;
|
|
4
|
+
const string_1 = require("@budsbox/lib-es/string");
|
|
4
5
|
const utils_1 = require("./utils");
|
|
5
|
-
const
|
|
6
|
+
const guards_1 = require("@budsbox/lib-es/guards");
|
|
7
|
+
/**
|
|
8
|
+
* The `constraintPackageName` variable is a constraint function that performs
|
|
9
|
+
* validation and modification on package names within a monorepo managed by Yarn.
|
|
10
|
+
*
|
|
11
|
+
* This function ensures that each workspace within the root workspace has a
|
|
12
|
+
* valid package name, and enforces a naming convention where the namespace (scope)
|
|
13
|
+
* of the root package is applied to any workspace whose package name lacks a namespace.
|
|
14
|
+
*
|
|
15
|
+
* Behavior:
|
|
16
|
+
* - Validates that the root package has a defined name in its `package.json` file.
|
|
17
|
+
* If the name is missing, an error is logged.
|
|
18
|
+
* - Extracts the namespace (scope) from the root package's name, if one exists.
|
|
19
|
+
* - Iterates over all Yarn workspaces and checks each workspace's package name:
|
|
20
|
+
* - If a workspace has no name defined in its `package.json`, an error is logged.
|
|
21
|
+
* - If a workspace's package name lacks a namespace, the root's namespace is
|
|
22
|
+
* applied to it as a prefix, and the name is updated accordingly.
|
|
23
|
+
*
|
|
24
|
+
* @param Yarn - The Yarn API instance, which provides access to the root workspace
|
|
25
|
+
* and all associated workspaces for validation and name modifications.
|
|
26
|
+
*/
|
|
6
27
|
const constraintPackageName = ({ Yarn }) => {
|
|
7
|
-
const root = (0,
|
|
28
|
+
const root = (0, utils_1.getRootWs)(Yarn);
|
|
8
29
|
const rootIdent = root.ident;
|
|
9
30
|
if (rootIdent == null) {
|
|
10
31
|
root.error('Missing field "name" in the root\'s package.json');
|
|
11
32
|
return;
|
|
12
33
|
}
|
|
13
|
-
const {
|
|
14
|
-
if (
|
|
34
|
+
const { scope } = (0, string_1.parsePackageName)(rootIdent);
|
|
35
|
+
if (scope != null) {
|
|
15
36
|
for (const workspace of Yarn.workspaces()) {
|
|
16
37
|
const { ident } = workspace;
|
|
17
|
-
if (
|
|
38
|
+
if ((0, guards_1.isNil)(ident)) {
|
|
18
39
|
workspace.error(`The workspace "${workspace.cwd}" has no package name`);
|
|
19
40
|
}
|
|
20
41
|
else {
|
|
21
|
-
const parsedIdent = (0,
|
|
22
|
-
if (parsedIdent.
|
|
23
|
-
workspace.set('name',
|
|
42
|
+
const parsedIdent = (0, string_1.parsePackageName)(ident);
|
|
43
|
+
if (parsedIdent.scope == null) {
|
|
44
|
+
workspace.set('name', (0, string_1.stringifyPackageName)({ scope, name: ident }));
|
|
24
45
|
}
|
|
25
46
|
}
|
|
26
47
|
}
|
|
27
48
|
}
|
|
28
49
|
};
|
|
29
50
|
exports.constraintPackageName = constraintPackageName;
|
|
51
|
+
/**
|
|
52
|
+
* A function that creates a constraint to enforce specific fields in the package manifests across multiple workspaces.
|
|
53
|
+
* This ensures the consistency of `sharedFields` in all workspace manifests by aligning them with the root workspace's manifest
|
|
54
|
+
* and validates that `requiredFields` are present in each workspace manifest. If a required field is missing and a default
|
|
55
|
+
* value is provided, it will be added. Otherwise, an error will be reported.
|
|
56
|
+
*
|
|
57
|
+
* @param options - The options object of constraint.
|
|
58
|
+
* @param options.sharedFields - A list of fields that need to be shared across all workspace manifests. Each workspace will inherit the
|
|
59
|
+
* corresponding values from the root workspace's manifest for these fields.
|
|
60
|
+
* @param options.requiredFields - An optional list of fields that must be present in each workspace manifest. Each field can either
|
|
61
|
+
* be:
|
|
62
|
+
* - A string indicating just the field name, in which case it is checked for existence and an error is raised if it is missing.
|
|
63
|
+
* - A tuple where the first element is the field name and the second element is the default value to be added if the field is missing.
|
|
64
|
+
* @returns A constraint function that can be applied to validate and enforce the specified manifest fields in all workspaces.
|
|
65
|
+
*/
|
|
30
66
|
const createManifestFieldsConstraint = ({ sharedFields, requiredFields = [] }) => function constraintManifestFields({ Yarn }) {
|
|
31
|
-
const rootManifest = (0, utils_1.getManifest)((0,
|
|
67
|
+
const rootManifest = (0, utils_1.getManifest)((0, utils_1.getRootWs)(Yarn));
|
|
32
68
|
for (const workspace of Yarn.workspaces()) {
|
|
33
69
|
for (const field of sharedFields) {
|
|
34
70
|
workspace.set(field, rootManifest[field]);
|
|
@@ -1,5 +1,74 @@
|
|
|
1
1
|
import { type ConstraintFactory } from '../utils';
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* Configuration options for defining constraints on peer dependencies.
|
|
4
|
+
*/
|
|
5
|
+
export interface PeerDependenciesConstraintOptions {
|
|
6
|
+
/**
|
|
7
|
+
* Indicates whether private workspaces can have peer dependencies.
|
|
8
|
+
*/
|
|
3
9
|
readonly allowPrivates?: boolean;
|
|
4
|
-
|
|
10
|
+
/**
|
|
11
|
+
* Specifies an optional list of glob patterns used to automatically
|
|
12
|
+
* identify and import peer dependencies.
|
|
13
|
+
*
|
|
14
|
+
* The property defines a set of patterns (e.g., 'package-name', 'module-name')
|
|
15
|
+
* that determine which peer dependencies should be automatically imported
|
|
16
|
+
* and managed by the dependency constraints. These patterns make it easier
|
|
17
|
+
* to include relevant peer dependencies without manual configuration.
|
|
18
|
+
*
|
|
19
|
+
* @example
|
|
20
|
+
* // Example usage in configuration options:
|
|
21
|
+
* const options: PeerDependenciesConstraintOptions = {
|
|
22
|
+
* autoImportFrom: ['eslint-plugin-*', 'packages/*']
|
|
23
|
+
* };
|
|
24
|
+
*
|
|
25
|
+
* // Patterns like 'eslint-plugin-*' can match all peer dependencies
|
|
26
|
+
* // starting with 'eslint-plugin-' (e.g., `eslint-plugin-react`).
|
|
27
|
+
* @see {@link micromatch} for supported glob syntax.
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* Glob patterns of direct dependencies whose `peerDependencies` should be
|
|
31
|
+
* propagated to the dependant workspace.
|
|
32
|
+
*
|
|
33
|
+
* If a workspace (A) depends on a package (B) whose name matches any pattern
|
|
34
|
+
* in this list, then all peerDependencies declared by B will be ensured on A.
|
|
35
|
+
* For example, if A depends on `package-B`, B has a peer dependency C, and
|
|
36
|
+
* `autoImportFrom` is `['package-*']`, then A will be made to declare C as dependency as well.
|
|
37
|
+
*
|
|
38
|
+
* Behavior:
|
|
39
|
+
* - When B is a "dependencies" entry of A, B's peerDependencies are added to
|
|
40
|
+
* A's "dependencies" (if not already present) and removed from A's
|
|
41
|
+
* "devDependencies".
|
|
42
|
+
* - Otherwise (e.g., B is only a devDependency), B's peerDependencies are
|
|
43
|
+
* added to A's "devDependencies" if missing.
|
|
44
|
+
*
|
|
45
|
+
* Patterns use micromatch-style globs. This list augments built-in matchers
|
|
46
|
+
* used by the constraint (e.g., scoped workspace wildcard, common presets).
|
|
47
|
+
*
|
|
48
|
+
* @example
|
|
49
|
+
* // Propagate peers from any package starting with "package-"
|
|
50
|
+
* autoImportFrom: ['package-*']
|
|
51
|
+
* @example
|
|
52
|
+
* // Propagate peers from all packages within a scope
|
|
53
|
+
* autoImportFrom: ['@my-scope/*']
|
|
54
|
+
*/
|
|
55
|
+
readonly autoImportFrom?: string[];
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Factory function to create a peer dependencies constraint for Yarn workspaces.
|
|
59
|
+
* This constraint ensures proper handling of peer dependencies in relation to other dependency types across workspaces,
|
|
60
|
+
* while also considering options for private packages and auto-import rules.
|
|
61
|
+
*
|
|
62
|
+
* @param options - Configuration options for the constraint. These include:
|
|
63
|
+
* - `allowPrivates`: A boolean indicating whether private workspaces are allowed to have peer dependencies. Defaults to `false`.
|
|
64
|
+
* - `autoImportFrom`: An array of glob patterns specifying auto-import rules for peer dependencies. Defaults to an empty array.
|
|
65
|
+
* @returns A function that defines the peer dependencies constraint logic. This function acts on Yarn dependency graphs to enforce consistency between peer dependencies, workspace-level dependencies, private workspace handling, and automatic peer dependency propagation from specific dependencies.
|
|
66
|
+
*
|
|
67
|
+
* ### Behavior:
|
|
68
|
+
* 1. Ensures that private packages (if `allowPrivates` is `false`) do not have peer dependencies.
|
|
69
|
+
* 2. Eliminates duplicate dependencies that are redundantly specified in both `dependencies` and `peerDependencies` for the same workspace.
|
|
70
|
+
* 3. Handles auto-importing of peer dependencies based on the specified `autoImportFrom` patterns and the project's scope.
|
|
71
|
+
* 4. Automatically ensures that required peer dependencies are included in appropriate workspaces, propagating them as needed to meet constraints.
|
|
72
|
+
*/
|
|
73
|
+
export declare const createPeerDependenciesConstraint: ConstraintFactory<PeerDependenciesConstraintOptions>;
|
|
5
74
|
//# sourceMappingURL=peer.d.ts.map
|
|
@@ -1,10 +1,41 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createPeerDependenciesConstraint = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
4
5
|
const utils_1 = require("../utils");
|
|
5
|
-
const
|
|
6
|
+
const guards_1 = require("@budsbox/lib-es/guards");
|
|
7
|
+
const micromatch = tslib_1.__importStar(require("micromatch"));
|
|
8
|
+
const logical_1 = require("@budsbox/lib-es/logical");
|
|
9
|
+
/**
|
|
10
|
+
* Factory function to create a peer dependencies constraint for Yarn workspaces.
|
|
11
|
+
* This constraint ensures proper handling of peer dependencies in relation to other dependency types across workspaces,
|
|
12
|
+
* while also considering options for private packages and auto-import rules.
|
|
13
|
+
*
|
|
14
|
+
* @param options - Configuration options for the constraint. These include:
|
|
15
|
+
* - `allowPrivates`: A boolean indicating whether private workspaces are allowed to have peer dependencies. Defaults to `false`.
|
|
16
|
+
* - `autoImportFrom`: An array of glob patterns specifying auto-import rules for peer dependencies. Defaults to an empty array.
|
|
17
|
+
* @returns A function that defines the peer dependencies constraint logic. This function acts on Yarn dependency graphs to enforce consistency between peer dependencies, workspace-level dependencies, private workspace handling, and automatic peer dependency propagation from specific dependencies.
|
|
18
|
+
*
|
|
19
|
+
* ### Behavior:
|
|
20
|
+
* 1. Ensures that private packages (if `allowPrivates` is `false`) do not have peer dependencies.
|
|
21
|
+
* 2. Eliminates duplicate dependencies that are redundantly specified in both `dependencies` and `peerDependencies` for the same workspace.
|
|
22
|
+
* 3. Handles auto-importing of peer dependencies based on the specified `autoImportFrom` patterns and the project's scope.
|
|
23
|
+
* 4. Automatically ensures that required peer dependencies are included in appropriate workspaces, propagating them as needed to meet constraints.
|
|
24
|
+
*/
|
|
25
|
+
const createPeerDependenciesConstraint = ({ allowPrivates = false, autoImportFrom = [] } = {}) => function constraintPeerDependencies({ Yarn }) {
|
|
26
|
+
const autoImportMatchers = [
|
|
27
|
+
...Yarn.workspaces().map(({ ident }) => ident ?? ''),
|
|
28
|
+
...autoImportFrom,
|
|
29
|
+
]
|
|
30
|
+
.filter(guards_1.isTruly)
|
|
31
|
+
.map((glob) => micromatch.matcher(glob));
|
|
32
|
+
const depsToAutoImportPeersFrom = new Map(Yarn.dependencies()
|
|
33
|
+
.filter(({ ident, resolution, type }) => type !== 'peerDependencies' &&
|
|
34
|
+
(0, logical_1.sure)(resolution, (res) => res.peerDependencies.size > 0, false) &&
|
|
35
|
+
autoImportMatchers.some((matcher) => matcher(ident)))
|
|
36
|
+
.map((dep) => [dep, dep.resolution.peerDependencies]));
|
|
6
37
|
for (const workspace of Yarn.workspaces()) {
|
|
7
|
-
const isPrivate = (0, utils_1.getManifest)(workspace)
|
|
38
|
+
const isPrivate = (0, guards_1.hasProp)((0, utils_1.getManifest)(workspace), 'private', guards_1.isTrue);
|
|
8
39
|
for (const peerDependency of Yarn.dependencies({
|
|
9
40
|
workspace,
|
|
10
41
|
type: 'peerDependencies',
|
|
@@ -17,65 +48,72 @@ const createPeerDependenciesConstraint = ({ allowPrivates = false } = {}) => fun
|
|
|
17
48
|
const query = { workspace, ident: peerDependency.ident };
|
|
18
49
|
// the same dependency both in "dependencies" and "peerDependencies" probably is a bug
|
|
19
50
|
Yarn.dependency({ ...query, type: 'dependencies' })?.delete();
|
|
20
|
-
if (Yarn.workspace({ ident: peerDependency.ident })
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
if (devDependency == null) {
|
|
33
|
-
workspace.set(['devDependencies', peerDependency.ident], (0, utils_1.getRangeConsideringRoot)(Yarn, peerDependency));
|
|
34
|
-
}
|
|
35
|
-
else if (peerDependency.range !== devDependency.range) {
|
|
36
|
-
peerDependency.update((0, utils_1.getRangeConsideringRoot)(Yarn, devDependency));
|
|
51
|
+
if ((0, guards_1.isNil)(Yarn.workspace({ ident: peerDependency.ident }))) {
|
|
52
|
+
const devDependency = Yarn.dependency({
|
|
53
|
+
...query,
|
|
54
|
+
type: 'devDependencies',
|
|
55
|
+
});
|
|
56
|
+
// the code below needed to properly update peer dependencies
|
|
57
|
+
if ((0, guards_1.isNil)(devDependency)) {
|
|
58
|
+
workspace.set(['devDependencies', peerDependency.ident], (0, utils_1.getRangeConsideringRoot)(Yarn, peerDependency));
|
|
59
|
+
}
|
|
60
|
+
else {
|
|
61
|
+
(0, utils_1.softUpdate)(Yarn, peerDependency, devDependency.range);
|
|
62
|
+
}
|
|
37
63
|
}
|
|
38
64
|
}
|
|
39
65
|
}
|
|
40
66
|
}
|
|
41
|
-
// Map<<workspace name>, <workspace peer dependencies without optional>>
|
|
42
|
-
const peersMap = new Map(Yarn.workspaces().flatMap((workspace) => {
|
|
43
|
-
const { peerDependenciesMeta = {} } = (0, utils_1.getManifest)(workspace);
|
|
44
|
-
return workspace.ident != null ?
|
|
45
|
-
[
|
|
46
|
-
[
|
|
47
|
-
workspace.ident,
|
|
48
|
-
Yarn.dependencies({
|
|
49
|
-
workspace,
|
|
50
|
-
type: 'peerDependencies',
|
|
51
|
-
}).filter(({ ident }) => peerDependenciesMeta[ident]?.optional !== true),
|
|
52
|
-
],
|
|
53
|
-
]
|
|
54
|
-
: [];
|
|
55
|
-
}));
|
|
56
67
|
// Ensures that peerDependencies of workspaces are met in dependent workspaces
|
|
57
68
|
for (const workspace of Yarn.workspaces()) {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
const
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
69
|
+
depsToAutoImportPeersFrom
|
|
70
|
+
.entries()
|
|
71
|
+
.filter(([dep]) => dep.workspace === workspace)
|
|
72
|
+
.forEach(([dep, peers]) => {
|
|
73
|
+
const { ident, type: peerType } = dep;
|
|
74
|
+
const query = { workspace, ident };
|
|
75
|
+
const samePeerExists = (0, guards_1.isNotNil)(Yarn.dependency({ ...query, type: 'peerDependencies' }));
|
|
76
|
+
if (peerType === 'dependencies') {
|
|
77
|
+
if (!samePeerExists) {
|
|
78
|
+
peers.forEach((range, subPeerIdent) => {
|
|
79
|
+
const subPeerQuery = { workspace, ident: subPeerIdent };
|
|
80
|
+
if (subPeerIdent !== workspace.ident &&
|
|
81
|
+
(0, guards_1.isNil)(Yarn.dependency({
|
|
82
|
+
...subPeerQuery,
|
|
83
|
+
type: 'peerDependencies',
|
|
84
|
+
}))) {
|
|
85
|
+
if ((0, guards_1.isNil)(Yarn.dependency({
|
|
86
|
+
...subPeerQuery,
|
|
87
|
+
type: 'dependencies',
|
|
88
|
+
}))) {
|
|
89
|
+
workspace.set(['dependencies', subPeerIdent], (0, utils_1.getRangeConsideringRoot)(Yarn, {
|
|
90
|
+
ident: subPeerIdent,
|
|
91
|
+
range,
|
|
92
|
+
}));
|
|
93
|
+
}
|
|
94
|
+
Yarn.dependency({
|
|
95
|
+
...subPeerQuery,
|
|
96
|
+
type: 'devDependencies',
|
|
97
|
+
})?.delete();
|
|
98
|
+
}
|
|
68
99
|
});
|
|
69
|
-
const range = (0, utils_1.getRangeConsideringRoot)(Yarn, peer);
|
|
70
|
-
if (peerInWs != null) {
|
|
71
|
-
peerInWs.update(range);
|
|
72
|
-
}
|
|
73
|
-
else if (peer.ident !== workspace.ident) {
|
|
74
|
-
workspace.set([wsDependency.type, peer.ident], range);
|
|
75
|
-
}
|
|
76
100
|
}
|
|
77
101
|
}
|
|
78
|
-
|
|
102
|
+
else if ((0, guards_1.isNil)(Yarn.dependency({ ...query, type: 'dependencies' }))) {
|
|
103
|
+
peers.forEach((range, subPeerIdent) => {
|
|
104
|
+
if (subPeerIdent !== workspace.ident &&
|
|
105
|
+
[
|
|
106
|
+
'devDependencies',
|
|
107
|
+
'dependencies',
|
|
108
|
+
'peerDependencies',
|
|
109
|
+
]
|
|
110
|
+
.map((type) => Yarn.dependency({ workspace, ident: subPeerIdent, type }))
|
|
111
|
+
.every(guards_1.isNil)) {
|
|
112
|
+
workspace.set(['devDependencies', subPeerIdent], (0, utils_1.getRangeConsideringRoot)(Yarn, { ident: subPeerIdent, range }));
|
|
113
|
+
}
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
});
|
|
79
117
|
}
|
|
80
118
|
};
|
|
81
119
|
exports.createPeerDependenciesConstraint = createPeerDependenciesConstraint;
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import { type Constraint } from '../utils';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* A constraint function that enforces the consistency of dependencies among Yarn workspaces.
|
|
4
|
+
* It ensures that if a dependency exists with multiple version ranges across different workspaces,
|
|
5
|
+
* the root workspace is informed about the discrepancy and either displays an error or synchronizes the dependency to the root level.
|
|
4
6
|
*
|
|
5
|
-
*
|
|
7
|
+
* This function processes all the dependencies of the workspaces except for the root.
|
|
8
|
+
* If it detects that the same dependency exists in different workspaces with differing version ranges, it raises an error.
|
|
9
|
+
* Otherwise, it synchronizes the dependency to the root workspace if it is missing from there.
|
|
10
|
+
*
|
|
11
|
+
* @param Yarn - A Yarn utility object that provides functions for managing dependencies and workspaces.
|
|
6
12
|
*/
|
|
7
13
|
export declare const constraintRootDependencies: Constraint;
|
|
8
14
|
//# sourceMappingURL=root.d.ts.map
|
|
@@ -1,34 +1,40 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.constraintRootDependencies = void 0;
|
|
4
|
+
const guards_1 = require("@budsbox/lib-es/guards");
|
|
4
5
|
const utils_1 = require("../utils");
|
|
5
6
|
/**
|
|
6
|
-
*
|
|
7
|
+
* A constraint function that enforces the consistency of dependencies among Yarn workspaces.
|
|
8
|
+
* It ensures that if a dependency exists with multiple version ranges across different workspaces,
|
|
9
|
+
* the root workspace is informed about the discrepancy and either displays an error or synchronizes the dependency to the root level.
|
|
7
10
|
*
|
|
8
|
-
*
|
|
11
|
+
* This function processes all the dependencies of the workspaces except for the root.
|
|
12
|
+
* If it detects that the same dependency exists in different workspaces with differing version ranges, it raises an error.
|
|
13
|
+
* Otherwise, it synchronizes the dependency to the root workspace if it is missing from there.
|
|
14
|
+
*
|
|
15
|
+
* @param Yarn - A Yarn utility object that provides functions for managing dependencies and workspaces.
|
|
9
16
|
*/
|
|
10
17
|
const constraintRootDependencies = ({ Yarn }) => {
|
|
11
18
|
const root = (0, utils_1.getRootWs)(Yarn);
|
|
12
19
|
const dependencyRecords = Yarn.workspaces()
|
|
13
20
|
.filter((ws) => ws !== root)
|
|
14
|
-
.reduce((acc, workspace) => ({
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}), {});
|
|
21
|
+
.reduce((acc, workspace) => Yarn.dependencies({ workspace }).reduce((depAcc, { ident, range }) => ([
|
|
22
|
+
Yarn.dependency({ workspace: root, ident }),
|
|
23
|
+
Yarn.workspace({ ident }),
|
|
24
|
+
].every(guards_1.isNil)) ?
|
|
25
|
+
{
|
|
26
|
+
...depAcc,
|
|
27
|
+
[ident]: [...(depAcc[ident] ?? []), range],
|
|
28
|
+
}
|
|
29
|
+
: depAcc, acc), {});
|
|
24
30
|
for (const [ident, ranges] of Object.entries(dependencyRecords)) {
|
|
25
31
|
if (ranges.length > 1) {
|
|
26
32
|
const rangeSet = new Set(ranges);
|
|
27
33
|
if (rangeSet.size > 1) {
|
|
28
|
-
root.error(`More than one workspaces
|
|
34
|
+
root.error(`More than one workspaces have dependency "${ident}" with following ranges: "${[...rangeSet].join('", "')}".
|
|
29
35
|
Please add this dependency to the root workspace manually`);
|
|
30
36
|
}
|
|
31
|
-
else if (Yarn.dependency({ workspace: root, ident })
|
|
37
|
+
else if ((0, guards_1.isNil)(Yarn.dependency({ workspace: root, ident }))) {
|
|
32
38
|
root.set(['dependencies', ident], rangeSet.values().next().value);
|
|
33
39
|
}
|
|
34
40
|
}
|
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
import { type ConstraintFactory } from '../utils';
|
|
2
|
+
/**
|
|
3
|
+
* A factory function to create a constraint that ensures specific dependency policies
|
|
4
|
+
* between Yarn workspaces within a monorepo. This includes managing dependency ranges,
|
|
5
|
+
* restricting dependencies, and enforcing workspace protocol usage.
|
|
6
|
+
*
|
|
7
|
+
* The `createWorkspaceDependenciesConstraint` allows configurations for restricting
|
|
8
|
+
* specific dependencies by marking them as banned and ensures that workspace dependencies
|
|
9
|
+
* use the proper workspace protocol.
|
|
10
|
+
*
|
|
11
|
+
* @param config - An optional configuration object.
|
|
12
|
+
* @param config.bannedDependencies - A list of dependencies that are banned across the workspaces.
|
|
13
|
+
* These dependencies will be removed if present.
|
|
14
|
+
* Defaults to an empty array if not provided.
|
|
15
|
+
* @returns A workspace dependencies constraint function that operates on a Yarn project
|
|
16
|
+
* using provided configurations. The constraint function enforces prohibited
|
|
17
|
+
* dependencies and ensures that workspace dependencies follow the workspace protocol.
|
|
18
|
+
*/
|
|
2
19
|
export declare const createWorkspaceDependenciesConstraint: ConstraintFactory<{
|
|
3
20
|
readonly bannedDependencies?: readonly string[];
|
|
4
21
|
}>;
|
|
@@ -2,13 +2,34 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createWorkspaceDependenciesConstraint = void 0;
|
|
4
4
|
const utils_1 = require("../utils");
|
|
5
|
+
const logical_1 = require("@budsbox/lib-es/logical");
|
|
6
|
+
const guards_1 = require("@budsbox/lib-es/guards");
|
|
7
|
+
/**
|
|
8
|
+
* A factory function to create a constraint that ensures specific dependency policies
|
|
9
|
+
* between Yarn workspaces within a monorepo. This includes managing dependency ranges,
|
|
10
|
+
* restricting dependencies, and enforcing workspace protocol usage.
|
|
11
|
+
*
|
|
12
|
+
* The `createWorkspaceDependenciesConstraint` allows configurations for restricting
|
|
13
|
+
* specific dependencies by marking them as banned and ensures that workspace dependencies
|
|
14
|
+
* use the proper workspace protocol.
|
|
15
|
+
*
|
|
16
|
+
* @param config - An optional configuration object.
|
|
17
|
+
* @param config.bannedDependencies - A list of dependencies that are banned across the workspaces.
|
|
18
|
+
* These dependencies will be removed if present.
|
|
19
|
+
* Defaults to an empty array if not provided.
|
|
20
|
+
* @returns A workspace dependencies constraint function that operates on a Yarn project
|
|
21
|
+
* using provided configurations. The constraint function enforces prohibited
|
|
22
|
+
* dependencies and ensures that workspace dependencies follow the workspace protocol.
|
|
23
|
+
*/
|
|
5
24
|
const createWorkspaceDependenciesConstraint = ({ bannedDependencies = [] } = {}) => function constraintWorkspaceDependencies({ Yarn }) {
|
|
6
25
|
const root = (0, utils_1.getRootWs)(Yarn);
|
|
7
26
|
const workspaces = Yarn.workspaces();
|
|
8
27
|
for (const workspace of workspaces) {
|
|
9
28
|
if (workspace !== root) {
|
|
10
29
|
for (const { ident, range } of Yarn.dependencies({ workspace: root })) {
|
|
11
|
-
Yarn.dependency({ workspace, ident })
|
|
30
|
+
(0, logical_1.sure)(Yarn.dependency({ workspace, ident }), (dep) => {
|
|
31
|
+
(0, utils_1.softUpdate)(Yarn, dep, range);
|
|
32
|
+
});
|
|
12
33
|
}
|
|
13
34
|
}
|
|
14
35
|
const banned = new Set([
|
|
@@ -17,11 +38,17 @@ const createWorkspaceDependenciesConstraint = ({ bannedDependencies = [] } = {})
|
|
|
17
38
|
...bannedDependencies,
|
|
18
39
|
]);
|
|
19
40
|
for (const dep of Yarn.dependencies({ workspace })) {
|
|
20
|
-
if (banned.has(dep.ident)
|
|
41
|
+
if (banned.has(dep.ident) ||
|
|
42
|
+
(dep.type === 'devDependencies' &&
|
|
43
|
+
(0, guards_1.isNotNil)(Yarn.dependency({
|
|
44
|
+
workspace,
|
|
45
|
+
ident: dep.ident,
|
|
46
|
+
type: 'dependencies',
|
|
47
|
+
})))) {
|
|
21
48
|
dep.delete();
|
|
22
49
|
}
|
|
23
50
|
else if (Yarn.workspace({ ident: dep.ident }) != null) {
|
|
24
|
-
|
|
51
|
+
(0, utils_1.softUpdate)(Yarn, dep, 'workspace:^');
|
|
25
52
|
}
|
|
26
53
|
}
|
|
27
54
|
}
|
package/dist/cjs/esm.js
CHANGED
|
@@ -12,8 +12,9 @@ const constraintImports = ({ Yarn }) => {
|
|
|
12
12
|
const { exports } = workspace.manifest;
|
|
13
13
|
if (exports != null) {
|
|
14
14
|
for (const [exportName, value] of Object.entries(exports)) {
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
if (exportName !== '.') {
|
|
16
|
+
workspace.set(['imports', exportName.replace('./', '#')], value);
|
|
17
|
+
}
|
|
17
18
|
}
|
|
18
19
|
}
|
|
19
20
|
}
|
package/dist/cjs/utils.d.ts
CHANGED
|
@@ -1,15 +1,71 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type { Yarn } from '@yarnpkg/types';
|
|
1
|
+
import type { Awaitable } from '@budsbox/lib-types';
|
|
2
|
+
import type { Yarn as YarnNS } from '@yarnpkg/types';
|
|
3
|
+
import type { PackageJson } from 'type-fest';
|
|
4
|
+
/**
|
|
5
|
+
* Interface representing the constraint options for configurations.
|
|
6
|
+
*/
|
|
3
7
|
export interface ConstraintOptions {
|
|
4
|
-
|
|
8
|
+
/**
|
|
9
|
+
* Yarn object provided to `constraints` methode in `yarn.config.cjs` config.
|
|
10
|
+
*/
|
|
11
|
+
readonly Yarn: YarnNS.Constraints.Yarn;
|
|
5
12
|
}
|
|
6
|
-
|
|
13
|
+
/**
|
|
14
|
+
* Represents a constraint function that takes a set of options and performs an asynchronous validation.
|
|
15
|
+
*
|
|
16
|
+
* @param options - An object containing the options required for the constraint validation.
|
|
17
|
+
* @returns A promise that resolves when the validation completes successfully, or rejects with an error if it fails.
|
|
18
|
+
*/
|
|
19
|
+
export type Constraint = (options: ConstraintOptions) => Awaitable<void>;
|
|
20
|
+
/**
|
|
21
|
+
* Represents a factory function type that generates a `Constraint` object.
|
|
22
|
+
* The specific signature depends on whether the `Options` type is an empty object.
|
|
23
|
+
*
|
|
24
|
+
* - If `Options` is an empty object, the factory function can be called with or without the `options` parameter.
|
|
25
|
+
* - Otherwise, the `options` parameter is required when calling the factory function.
|
|
26
|
+
*
|
|
27
|
+
* @typeParam Options - The type of the option parameter used to configure the `Constraint`.
|
|
28
|
+
* @param options - An optional or required configuration object, depending on whether `Options` is an empty object or not.
|
|
29
|
+
* @returns A `Constraint` object configured based on the provided options.
|
|
30
|
+
*/
|
|
7
31
|
export type ConstraintFactory<Options extends object> = object extends Options ? (options?: Options) => Constraint : (options: Options) => Constraint;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
32
|
+
/**
|
|
33
|
+
* Retrieves the root workspace for the given yarn constraints.
|
|
34
|
+
*
|
|
35
|
+
* @param yarn - The Yarn constraints object used to fetch workspaces.
|
|
36
|
+
* @returns The root workspace from the provided Yarn constraints.
|
|
37
|
+
* @throws Error if the root workspace cannot be determined.
|
|
38
|
+
*/
|
|
39
|
+
export declare function getRootWs(yarn: YarnNS.Constraints.Yarn): YarnNS.Constraints.Workspace;
|
|
40
|
+
/**
|
|
41
|
+
* Retrieves the manifest of the provided workspace. If the workspace's manifest is null,
|
|
42
|
+
* an error is thrown.
|
|
43
|
+
*
|
|
44
|
+
* @param workspace - The workspace whose manifest is to be retrieved.
|
|
45
|
+
* @returns The manifest of the provided workspace as an object of type T.
|
|
46
|
+
*/
|
|
47
|
+
export declare function getManifest<T extends object = PackageJson>(workspace: YarnNS.Constraints.Workspace): T;
|
|
48
|
+
/**
|
|
49
|
+
* Determines the appropriate range for a given dependency, considering the root workspace
|
|
50
|
+
* dependency range if it exists; otherwise, it defaults to the provided dependency range.
|
|
51
|
+
*
|
|
52
|
+
* @param yarn - The Yarn constraints instance to operate on.
|
|
53
|
+
* @param dependency - The dependency for which the range is being calculated.
|
|
54
|
+
* @returns The dependency range considering the root workspace dependency if present,
|
|
55
|
+
* otherwise the original dependency range.
|
|
56
|
+
*/
|
|
57
|
+
export declare const getRangeConsideringRoot: (yarn: YarnNS.Constraints.Yarn, dependency: Readonly<Pick<YarnNS.Constraints.Dependency, "range" | "ident">>) => string;
|
|
58
|
+
/**
|
|
59
|
+
* Updates the version range of a dependency if it differs from the current range.
|
|
60
|
+
*
|
|
61
|
+
* This function calculates a new version range for the given dependency using the root context
|
|
62
|
+
* and updates the dependency if the calculated range is different from the current one. The
|
|
63
|
+
* updated range is then returned.
|
|
64
|
+
*
|
|
65
|
+
* @param Yarn - The Yarn constraints object that provides utility methods for dependency updates.
|
|
66
|
+
* @param dependency - The dependency object which includes the current range and an update method.
|
|
67
|
+
* @param range - The desired version range for the dependency.
|
|
68
|
+
* @returns The new version range after considering the root context of dependencies.
|
|
69
|
+
*/
|
|
70
|
+
export declare const softUpdate: (Yarn: YarnNS.Constraints.Yarn, dependency: YarnNS.Constraints.Dependency, range: string) => string;
|
|
15
71
|
//# sourceMappingURL=utils.d.ts.map
|
package/dist/cjs/utils.js
CHANGED
|
@@ -1,37 +1,69 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.softUpdate = exports.getRangeConsideringRoot = void 0;
|
|
3
4
|
exports.getRootWs = getRootWs;
|
|
4
5
|
exports.getManifest = getManifest;
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
const logical_1 = require("@budsbox/lib-es/logical");
|
|
7
|
+
/**
|
|
8
|
+
* Retrieves the root workspace for the given yarn constraints.
|
|
9
|
+
*
|
|
10
|
+
* @param yarn - The Yarn constraints object used to fetch workspaces.
|
|
11
|
+
* @returns The root workspace from the provided Yarn constraints.
|
|
12
|
+
* @throws Error if the root workspace cannot be determined.
|
|
13
|
+
*/
|
|
7
14
|
function getRootWs(yarn) {
|
|
8
15
|
const [root] = yarn.workspaces({ cwd: '.' });
|
|
9
16
|
if (root == null) {
|
|
10
|
-
throw new Error('Failed to
|
|
17
|
+
throw new Error('Failed to find the root workspace');
|
|
11
18
|
}
|
|
12
19
|
return root;
|
|
13
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* Retrieves the manifest of the provided workspace. If the workspace's manifest is null,
|
|
23
|
+
* an error is thrown.
|
|
24
|
+
*
|
|
25
|
+
* @param workspace - The workspace whose manifest is to be retrieved.
|
|
26
|
+
* @returns The manifest of the provided workspace as an object of type T.
|
|
27
|
+
*/
|
|
14
28
|
function getManifest(workspace) {
|
|
15
29
|
if (workspace.manifest == null) {
|
|
16
30
|
throw new Error(`Workspace manifest is ${String(workspace.manifest)}`);
|
|
17
31
|
}
|
|
18
|
-
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
|
|
19
32
|
return workspace.manifest;
|
|
20
33
|
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
/**
|
|
35
|
+
* Determines the appropriate range for a given dependency, considering the root workspace
|
|
36
|
+
* dependency range if it exists; otherwise, it defaults to the provided dependency range.
|
|
37
|
+
*
|
|
38
|
+
* @param yarn - The Yarn constraints instance to operate on.
|
|
39
|
+
* @param dependency - The dependency for which the range is being calculated.
|
|
40
|
+
* @returns The dependency range considering the root workspace dependency if present,
|
|
41
|
+
* otherwise the original dependency range.
|
|
42
|
+
*/
|
|
43
|
+
const getRangeConsideringRoot = (yarn, dependency) => (0, logical_1.sure)(yarn.dependency({
|
|
44
|
+
workspace: getRootWs(yarn),
|
|
45
|
+
ident: dependency.ident,
|
|
46
|
+
}), ({ range }) => range, dependency.range);
|
|
47
|
+
exports.getRangeConsideringRoot = getRangeConsideringRoot;
|
|
48
|
+
/**
|
|
49
|
+
* Updates the version range of a dependency if it differs from the current range.
|
|
50
|
+
*
|
|
51
|
+
* This function calculates a new version range for the given dependency using the root context
|
|
52
|
+
* and updates the dependency if the calculated range is different from the current one. The
|
|
53
|
+
* updated range is then returned.
|
|
54
|
+
*
|
|
55
|
+
* @param Yarn - The Yarn constraints object that provides utility methods for dependency updates.
|
|
56
|
+
* @param dependency - The dependency object which includes the current range and an update method.
|
|
57
|
+
* @param range - The desired version range for the dependency.
|
|
58
|
+
* @returns The new version range after considering the root context of dependencies.
|
|
59
|
+
*/
|
|
60
|
+
const softUpdate = (Yarn, dependency, range) => {
|
|
61
|
+
const newRange = (0, exports.getRangeConsideringRoot)(Yarn, { ...dependency, range });
|
|
62
|
+
// this check helps to avoid conflicts when apply dependency.delete() in other constraints
|
|
63
|
+
if (newRange !== dependency.range) {
|
|
64
|
+
dependency.update(newRange);
|
|
65
|
+
}
|
|
66
|
+
return newRange;
|
|
67
|
+
};
|
|
68
|
+
exports.softUpdate = softUpdate;
|
|
37
69
|
//# sourceMappingURL=utils.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budsbox/constraints",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"homepage": "https://gitlab.com/budsbox/fe/seed",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://gitlab.com/budsbox/fe/seed/-/issues"
|
|
@@ -24,33 +24,46 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
|
-
"dist"
|
|
27
|
+
"dist/**/*.js",
|
|
28
|
+
"dist/**/*.d.ts"
|
|
28
29
|
],
|
|
29
30
|
"scripts": {
|
|
30
|
-
"
|
|
31
|
+
"name": "echo $npm_package_name",
|
|
32
|
+
"prepack": "yarn p:ts:prepack",
|
|
33
|
+
"setup": "[ -f dist/dist.tsbuildinfo ] || run p:lib:setup"
|
|
31
34
|
},
|
|
32
35
|
"dependencies": {
|
|
33
|
-
"@budsbox/
|
|
34
|
-
"@
|
|
36
|
+
"@budsbox/lib-es": "^1.0.1",
|
|
37
|
+
"@types/micromatch": "^4.0.9",
|
|
38
|
+
"@yarnpkg/types": "^4.0.1",
|
|
39
|
+
"micromatch": "^4.0.8",
|
|
40
|
+
"semver": "^7.7.2",
|
|
41
|
+
"semver-intersect": "^1.5.0",
|
|
42
|
+
"type-fest": "^4.32.0"
|
|
35
43
|
},
|
|
36
44
|
"devDependencies": {
|
|
37
|
-
"@budsbox/
|
|
38
|
-
"@budsbox/
|
|
39
|
-
"@budsbox/
|
|
40
|
-
"@
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"eslint": "^
|
|
44
|
-
"eslint
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"eslint
|
|
48
|
-
"eslint
|
|
49
|
-
"eslint-
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
45
|
+
"@budsbox/eslint": "^1.0.3",
|
|
46
|
+
"@budsbox/eslint_presets-node-lib": "^1.0.2",
|
|
47
|
+
"@budsbox/eslint_presets-tools": "^1.0.2",
|
|
48
|
+
"@budsbox/lib-types": "^1.0.0",
|
|
49
|
+
"@budsbox/tsconfigs": "^4.1.0",
|
|
50
|
+
"@budsbox/types": "^2.0.0",
|
|
51
|
+
"@eslint/js": "^9.26.0",
|
|
52
|
+
"@types/eslint": "^9.6.1",
|
|
53
|
+
"@types/node": "^22.15.2",
|
|
54
|
+
"@types/semver": "^7",
|
|
55
|
+
"@typescript-eslint/parser": "^8.32.1",
|
|
56
|
+
"eslint": "^9.26.0",
|
|
57
|
+
"eslint-config-prettier": "^10.1.5",
|
|
58
|
+
"eslint-import-resolver-typescript": "^4.3.4",
|
|
59
|
+
"eslint-plugin-jsdoc": "^50.6.17",
|
|
60
|
+
"eslint-plugin-react": "^7.37.5",
|
|
61
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
62
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
63
|
+
"globals": "^16.1.0",
|
|
64
|
+
"tslib": "^2.8.1",
|
|
65
|
+
"typescript": "^5.8.3",
|
|
66
|
+
"typescript-eslint": "^8.32.1"
|
|
54
67
|
},
|
|
55
|
-
"packageManager": "yarn@4.
|
|
68
|
+
"packageManager": "yarn@4.9.2"
|
|
56
69
|
}
|
package/dist/cjs/base.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../src/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,iBAAiB,EAAiC,MAAM,SAAS,CAAC;AAEhF,OAAO,EAAE,KAAK,UAAU,EAAa,MAAM,SAAS,CAAC;AAErD,eAAO,MAAM,qBAAqB,EAAE,UAwBnC,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,iBAAiB,CAAC;IAC7D,QAAQ,CAAC,YAAY,EAAE,SAAS,MAAM,EAAE,CAAC;IACzC,QAAQ,CAAC,cAAc,CAAC,EAAE,aAAa,CAAC,MAAM,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;CACrE,CAoBE,CAAC"}
|
package/dist/cjs/base.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base.js","sourceRoot":"","sources":["../../src/base.ts"],"names":[],"mappings":";;;AAAA,mCAAgF;AAEhF,mCAAqD;AAE9C,MAAM,qBAAqB,GAAe,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE;IAC5D,MAAM,IAAI,GAAG,IAAA,iBAAS,EAAC,IAAI,CAAC,CAAC;IAC7B,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC;IAE7B,IAAI,SAAS,IAAI,IAAI,EAAE,CAAC;QACtB,IAAI,CAAC,KAAK,CAAC,kDAAkD,CAAC,CAAC;QAC/D,OAAO;IACT,CAAC;IAED,MAAM,EAAE,EAAE,EAAE,GAAG,IAAA,wBAAgB,EAAC,SAAS,CAAC,CAAC;IAE3C,IAAI,EAAE,IAAI,IAAI,EAAE,CAAC;QACf,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE,CAAC;YAC1C,MAAM,EAAE,KAAK,EAAE,GAAG,SAAS,CAAC;YAC5B,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;gBAClB,SAAS,CAAC,KAAK,CAAC,kBAAkB,SAAS,CAAC,GAAG,uBAAuB,CAAC,CAAC;YAC1E,CAAC;iBAAM,CAAC;gBACN,MAAM,WAAW,GAAG,IAAA,wBAAgB,EAAC,KAAK,CAAC,CAAC;gBAC5C,IAAI,WAAW,CAAC,EAAE,IAAI,IAAI,EAAE,CAAC;oBAC3B,SAAS,CAAC,GAAG,CAAC,MAAM,EAAE,GAAG,EAAE,GAAG,KAAK,EAAE,CAAC,CAAC;gBACzC,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC,CAAC;AAxBW,QAAA,qBAAqB,yBAwBhC;AAEK,MAAM,8BAA8B,GAGtC,CAAC,EAAE,YAAY,EAAE,cAAc,GAAG,EAAE,EAAE,EAAE,EAAE,CAC7C,SAAS,wBAAwB,CAAC,EAAE,IAAI,EAAE;IACxC,MAAM,YAAY,GAAG,IAAA,mBAAW,EAAC,IAAA,iBAAS,EAAC,IAAI,CAAC,CAAC,CAAC;IAClD,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE,CAAC;QAC1C,KAAK,MAAM,KAAK,IAAI,YAAY,EAAE,CAAC;YACjC,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC;QAC5C,CAAC;QAED,KAAK,MAAM,KAAK,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,CAAC,EAAE,GAAG,cAAc,CAAC,EAAE,CAAC;YAC5D,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;YAClE,MAAM,QAAQ,GAAG,IAAA,mBAAW,EAAC,SAAS,CAAC,CAAC;YACxC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,GAAG,CAAC,EAAE,CAAC;gBAClC,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;oBAClB,SAAS,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;gBAC5B,CAAC;qBAAM,CAAC;oBACN,SAAS,CAAC,KAAK,CAAC,iBAAiB,GAAG,kBAAkB,CAAC,CAAC;gBAC1D,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC,CAAC;AAvBS,QAAA,8BAA8B,kCAuBvC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/dependencies/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,WAAW,CAAC;AACvD,OAAO,EAAE,gCAAgC,EAAE,MAAM,WAAW,CAAC;AAC7D,OAAO,EAAE,qCAAqC,EAAE,MAAM,gBAAgB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/dependencies/index.ts"],"names":[],"mappings":";;;AAAA,qCAAuD;AAA9C,qHAAA,0BAA0B,OAAA;AACnC,qCAA6D;AAApD,2HAAA,gCAAgC,OAAA;AACzC,+CAAuE;AAA9D,qIAAA,qCAAqC,OAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"peer.d.ts","sourceRoot":"","sources":["../../../src/dependencies/peer.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,KAAK,iBAAiB,EAGvB,MAAM,UAAU,CAAC;AAElB,eAAO,MAAM,gCAAgC,EAAE,iBAAiB,CAAC;IAC/D,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC;CAClC,CAgGE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"peer.js","sourceRoot":"","sources":["../../../src/dependencies/peer.ts"],"names":[],"mappings":";;;AAEA,oCAIkB;AAEX,MAAM,gCAAgC,GAExC,CAAC,EAAE,aAAa,GAAG,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,CACtC,SAAS,0BAA0B,CAAC,EAAE,IAAI,EAAE;IAC1C,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE,CAAC;QAC1C,MAAM,SAAS,GACb,IAAA,mBAAW,EAAwB,SAAS,CAAC,CAAC,OAAO,KAAK,IAAI,CAAC;QACjE,KAAK,MAAM,cAAc,IAAI,IAAI,CAAC,YAAY,CAAC;YAC7C,SAAS;YACT,IAAI,EAAE,kBAAkB;SACzB,CAAC,EAAE,CAAC;YACH,IAAI,SAAS,IAAI,CAAC,aAAa,EAAE,CAAC;gBAChC,oDAAoD;gBACpD,cAAc,CAAC,MAAM,EAAE,CAAC;YAC1B,CAAC;iBAAM,CAAC;gBACN,MAAM,KAAK,GAAG,EAAE,SAAS,EAAE,KAAK,EAAE,cAAc,CAAC,KAAK,EAAW,CAAC;gBAClE,sFAAsF;gBACtF,IAAI,CAAC,UAAU,CAAC,EAAE,GAAG,KAAK,EAAE,IAAI,EAAE,cAAc,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC;gBAE9D,IAAI,IAAI,CAAC,SAAS,CAAC,EAAE,KAAK,EAAE,cAAc,CAAC,KAAK,EAAE,CAAC,IAAI,IAAI,EAAE,CAAC;oBAC5D,SAAS;gBACX,CAAC;gBAED,2DAA2D;gBAC3D,MAAM,aAAa,GAAG,IAAI,CAAC,UAAU,CAAC;oBACpC,GAAG,KAAK;oBACR,IAAI,EAAE,iBAAiB;iBACxB,CAAC,CAAC;gBACH,IACE,SAAS,CAAC,KAAK,KAAK,kBAAkB;oBACtC,cAAc,CAAC,KAAK,KAAK,mCAAmC,EAC5D,CAAC;oBACD,8CAA8C;gBAChD,CAAC;gBACD,IAAI,aAAa,IAAI,IAAI,EAAE,CAAC;oBAC1B,SAAS,CAAC,GAAG,CACX,CAAC,iBAAiB,EAAE,cAAc,CAAC,KAAK,CAAC,EACzC,IAAA,+BAAuB,EAAC,IAAI,EAAE,cAAc,CAAC,CAC9C,CAAC;gBACJ,CAAC;qBAAM,IAAI,cAAc,CAAC,KAAK,KAAK,aAAa,CAAC,KAAK,EAAE,CAAC;oBACxD,cAAc,CAAC,MAAM,CAAC,IAAA,+BAAuB,EAAC,IAAI,EAAE,aAAa,CAAC,CAAC,CAAC;gBACtE,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;IAED,wEAAwE;IACxE,MAAM,QAAQ,GAAG,IAAI,GAAG,CAItB,IAAI,CAAC,UAAU,EAAE,CAAC,OAAO,CAAC,CAAC,SAAS,EAAE,EAAE;QACtC,MAAM,EAAE,oBAAoB,GAAG,EAAE,EAAE,GAAG,IAAA,mBAAW,EAE9C,SAAS,CAAC,CAAC;QAEd,OAAO,SAAS,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC;YAC5B;gBACE;oBACE,SAAS,CAAC,KAAK;oBACf,IAAI,CAAC,YAAY,CAAC;wBAChB,SAAS;wBACT,IAAI,EAAE,kBAAkB;qBACzB,CAAC,CAAC,MAAM,CACP,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,oBAAoB,CAAC,KAAK,CAAC,EAAE,QAAQ,KAAK,IAAI,CAC9D;iBACF;aACF;YACH,CAAC,CAAC,EAAE,CAAC;IACT,CAAC,CAAC,CACH,CAAC;IAEF,8EAA8E;IAC9E,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE,CAAC;QAC1C,KAAK,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,IAAI,QAAQ,EAAE,CAAC;YACtC,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBACvB,SAAS;YACX,CAAC;YAED,MAAM,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,CAAC,CAAC;YAE3D,IAAI,YAAY,IAAI,IAAI,EAAE,CAAC;gBACzB,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;oBACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC;wBAC/B,SAAS;wBACT,KAAK,EAAE,IAAI,CAAC,KAAK;qBAClB,CAAC,CAAC;oBAEH,MAAM,KAAK,GAAG,IAAA,+BAAuB,EAAC,IAAI,EAAE,IAAI,CAAC,CAAC;oBAClD,IAAI,QAAQ,IAAI,IAAI,EAAE,CAAC;wBACrB,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;oBACzB,CAAC;yBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,KAAK,EAAE,CAAC;wBAC1C,SAAS,CAAC,GAAG,CAAC,CAAC,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC;oBACxD,CAAC;gBACH,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC,CAAC;AAlGS,QAAA,gCAAgC,oCAkGzC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"root.d.ts","sourceRoot":"","sources":["../../../src/dependencies/root.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAa,MAAM,UAAU,CAAC;AAEtD;;;;GAIG;AACH,eAAO,MAAM,0BAA0B,EAAE,UAuCxC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"root.js","sourceRoot":"","sources":["../../../src/dependencies/root.ts"],"names":[],"mappings":";;;AAAA,oCAAsD;AAEtD;;;;GAIG;AACI,MAAM,0BAA0B,GAAe,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE;IACjE,MAAM,IAAI,GAAG,IAAA,iBAAS,EAAC,IAAI,CAAC,CAAC;IAG7B,MAAM,iBAAiB,GAAG,IAAI,CAAC,UAAU,EAAE;SACxC,MAAM,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,IAAI,CAAC;SAC3B,MAAM,CACL,CAAC,GAAG,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC;QACnB,GAAG,GAAG;QACN,GAAG,IAAI,CAAC,YAAY,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC,MAAM,CACxC,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,CAC3B,CACE,IAAI,CAAC,UAAU,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,IAAI,IAAI;YACnD,IAAI,CAAC,SAAS,CAAC,EAAE,KAAK,EAAE,CAAC,IAAI,IAAI,CAClC,CAAC,CAAC;YACD;gBACE,GAAG,MAAM;gBACT,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,CAAC;aAC3C;YACH,CAAC,CAAC,MAAM,EACV,EAAE,CACH;KACF,CAAC,EACF,EAAE,CACH,CAAC;IAEJ,KAAK,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,iBAAiB,CAAC,EAAE,CAAC;QAChE,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACtB,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC;YACjC,IAAI,QAAQ,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC;gBACtB,IAAI,CAAC,KAAK,CACR,4CAA4C,KAAK,6BAA6B,CAAC,GAAG,QAAQ,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;4DACtD,CACnD,CAAC;YACJ,CAAC;iBAAM,IAAI,IAAI,CAAC,UAAU,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,IAAI,IAAI,EAAE,CAAC;gBAC/D,IAAI,CAAC,GAAG,CAAC,CAAC,cAAc,EAAE,KAAK,CAAC,EAAE,QAAQ,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC;YACpE,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC,CAAC;AAvCW,QAAA,0BAA0B,8BAuCrC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../../../src/dependencies/workspace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,iBAAiB,EAAa,MAAM,UAAU,CAAC;AAE7D,eAAO,MAAM,qCAAqC,EAAE,iBAAiB,CAAC;IACpE,QAAQ,CAAC,kBAAkB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CACjD,CAwBE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.js","sourceRoot":"","sources":["../../../src/dependencies/workspace.ts"],"names":[],"mappings":";;;AAAA,oCAA6D;AAEtD,MAAM,qCAAqC,GAE7C,CAAC,EAAE,kBAAkB,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CACxC,SAAS,+BAA+B,CAAC,EAAE,IAAI,EAAE;IAC/C,MAAM,IAAI,GAAG,IAAA,iBAAS,EAAC,IAAI,CAAC,CAAC;IAC7B,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,EAAE,CAAC;IACrC,KAAK,MAAM,SAAS,IAAI,UAAU,EAAE,CAAC;QACnC,IAAI,SAAS,KAAK,IAAI,EAAE,CAAC;YACvB,KAAK,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,YAAY,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;gBACtE,IAAI,CAAC,UAAU,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC;YACvD,CAAC;QACH,CAAC;QAED,MAAM,MAAM,GAAG,IAAI,GAAG,CAAC;YACrB,IAAI,CAAC,KAAK;YACV,SAAS,CAAC,KAAK;YACf,GAAG,kBAAkB;SACtB,CAAC,CAAC;QACH,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,YAAY,CAAC,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC;YACnD,IAAI,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC1B,GAAG,CAAC,MAAM,EAAE,CAAC;YACf,CAAC;iBAAM,IAAI,IAAI,CAAC,SAAS,CAAC,EAAE,KAAK,EAAE,GAAG,CAAC,KAAK,EAAE,CAAC,IAAI,IAAI,EAAE,CAAC;gBACxD,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;YAC5B,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC,CAAC;AA1BS,QAAA,qCAAqC,yCA0B9C"}
|
package/dist/cjs/esm.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"esm.d.ts","sourceRoot":"","sources":["../../src/esm.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,iBAAiB,EAAE,UAI/B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,UAe/B,CAAC"}
|
package/dist/cjs/esm.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"esm.js","sourceRoot":"","sources":["../../src/esm.ts"],"names":[],"mappings":";;;AAEO,MAAM,iBAAiB,GAAe,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE;IACxD,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE,CAAC;QAC1C,SAAS,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,gBAAgB,CAAC,EAAE,gBAAgB,CAAC,CAAC;IACjE,CAAC;AACH,CAAC,CAAC;AAJW,QAAA,iBAAiB,qBAI5B;AAEK,MAAM,iBAAiB,GAAe,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE;IACxD,KAAK,MAAM,SAAS,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE,CAAC;QAC1C,MAAM,EAAE,OAAO,EAAE,GAAG,SAAS,CAAC,QAE7B,CAAC;QAEF,IAAI,OAAO,IAAI,IAAI,EAAE,CAAC;YACpB,KAAK,MAAM,CAAC,UAAU,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC;gBAC1D,MAAM,UAAU,GACd,UAAU,KAAK,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;gBAE5D,SAAS,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,UAAU,CAAC,EAAE,KAAK,CAAC,CAAC;YAChD,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC,CAAC;AAfW,QAAA,iBAAiB,qBAe5B"}
|
package/dist/cjs/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAEhE,wBAAsB,sBAAsB,CAC1C,OAAO,EAAE,iBAAiB,EAC1B,GAAG,WAAW,EAAE,SAAS,UAAU,EAAE,GACpC,OAAO,CAAC,IAAI,CAAC,CAIf;AAED,OAAO,EACL,qBAAqB,EACrB,8BAA8B,GAC/B,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,EACL,0BAA0B,EAC1B,gCAAgC,EAChC,qCAAqC,GACtC,MAAM,yBAAyB,CAAC"}
|
package/dist/cjs/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAEA,wDAOC;AAPM,KAAK,UAAU,sBAAsB,CAC1C,OAA0B,EAC1B,GAAG,WAAkC;IAErC,KAAK,MAAM,UAAU,IAAI,WAAW,EAAE,CAAC;QACrC,MAAM,UAAU,CAAC,OAAO,CAAC,CAAC;IAC5B,CAAC;AACH,CAAC;AAED,qCAGmB;AAFjB,gHAAA,qBAAqB,OAAA;AACrB,yHAAA,8BAA8B,OAAA;AAEhC,mCAAgE;AAAvD,2GAAA,iBAAiB,OAAA;AAAE,2GAAA,iBAAiB,OAAA;AAC7C,oDAIiC;AAH/B,sHAAA,0BAA0B,OAAA;AAC1B,4HAAA,gCAAgC,OAAA;AAChC,iIAAA,qCAAqC,OAAA"}
|
package/dist/cjs/utils.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AAE3C,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC;CACtC;AAED,MAAM,MAAM,UAAU,GAAG,CAAC,OAAO,EAAE,iBAAiB,KAAK,MAAM,CAAC,IAAI,CAAC,CAAC;AAEtE,MAAM,MAAM,iBAAiB,CAAC,OAAO,SAAS,MAAM,IAClD,MAAM,SAAS,OAAO,GAAG,CAAC,OAAO,CAAC,EAAE,OAAO,KAAK,UAAU,GACxD,CAAC,OAAO,EAAE,OAAO,KAAK,UAAU,CAAC;AAErC,wBAAgB,SAAS,CACvB,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,GAC1B,IAAI,CAAC,WAAW,CAAC,SAAS,CAQ5B;AACD,wBAAgB,WAAW,CAEzB,CAAC,SAAS,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC1C,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,SAAS,GAAG,CAAC,CAO1C;AAED,wBAAgB,uBAAuB,CACrC,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,EAC3B,UAAU,EAAE,IAAI,CAAC,WAAW,CAAC,UAAU,GACtC,MAAM,CAOR;AAED,wBAAgB,gBAAgB,CAAC,WAAW,EAAE,MAAM,GAAG;IACrD,EAAE,EAAE,IAAI,MAAM,GAAG,GAAG,IAAI,CAAC;IACzB,IAAI,EAAE,MAAM,CAAC;CACd,CAQA"}
|
package/dist/cjs/utils.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":";;AAaA,8BAUC;AACD,kCAUC;AAED,0DAUC;AAED,4CAWC;AA9CD,SAAgB,SAAS,CACvB,IAA2B;IAE3B,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC;IAE7C,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACjB,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;IAClD,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC;AACD,SAAgB,WAAW,CAGzB,SAAqC;IACrC,IAAI,SAAS,CAAC,QAAQ,IAAI,IAAI,EAAE,CAAC;QAC/B,MAAM,IAAI,KAAK,CAAC,yBAAyB,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;IACzE,CAAC;IAED,+DAA+D;IAC/D,OAAO,SAAS,CAAC,QAAQ,CAAC;AAC5B,CAAC;AAED,SAAgB,uBAAuB,CACrC,IAA2B,EAC3B,UAAuC;IAEvC,MAAM,OAAO,GAAG,IAAI,CAAC,UAAU,CAAC;QAC9B,SAAS,EAAE,SAAS,CAAC,IAAI,CAAC;QAC1B,KAAK,EAAE,UAAU,CAAC,KAAK;KACxB,CAAC,CAAC;IAEH,OAAO,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;AAC5D,CAAC;AAED,SAAgB,gBAAgB,CAAC,WAAmB;IAIlD,MAAM,CAAC,EAAE,CAAC,GAAI,WAAW,CAAC,IAAI,CAAC,WAAW,CAA4B,IAAI;QACxE,IAAI;KACL,CAAC;IACF,OAAO;QACL,EAAE;QACF,IAAI,EAAE,WAAW,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC;KACxC,CAAC;AACJ,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es5.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2023.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2023.array.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../.yarn/cache/typescript-patch-fe43cd9db9-73409d7b91.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../.yarn/cache/tslib-npm-2.7.0-21668f5c21-469e1d5bf1.zip/node_modules/tslib/tslib.d.ts","../../packages/types/dist/cjs/index.d.ts","../../.yarn/cache/@yarnpkg-types-npm-4.0.0-cfa3270e50-41f67a4aa5.zip/node_modules/@yarnpkg/types/lib/constraints.d.ts","../../.yarn/cache/@yarnpkg-types-npm-4.0.0-cfa3270e50-41f67a4aa5.zip/node_modules/@yarnpkg/types/lib/yarn.d.ts","../../.yarn/cache/@yarnpkg-types-npm-4.0.0-cfa3270e50-41f67a4aa5.zip/node_modules/@yarnpkg/types/lib/index.d.ts","../src/utils.ts","../src/base.ts","../src/esm.ts","../src/dependencies/root.ts","../src/dependencies/peer.ts","../src/dependencies/workspace.ts","../src/dependencies/index.ts","../src/index.ts","../../packages/types/es.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/assert.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/assert/strict.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/header.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/readable.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/file.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/fetch.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/formdata.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/connector.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/client.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/errors.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/dispatcher.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/global-dispatcher.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/global-origin.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/pool-stats.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/pool.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/handlers.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/balanced-pool.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/agent.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/mock-interceptor.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/mock-agent.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/mock-client.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/mock-pool.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/mock-errors.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/proxy-agent.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/env-http-proxy-agent.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/retry-handler.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/retry-agent.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/api.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/interceptors.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/util.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/cookies.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/patch.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/websocket.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/eventsource.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/filereader.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/diagnostics-channel.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/content-type.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/cache.d.ts","../../.yarn/cache/undici-types-npm-6.19.8-9f12285b7a-078afa5990.zip/node_modules/undici-types/index.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/globals.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/async_hooks.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/buffer.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/child_process.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/cluster.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/console.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/constants.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/crypto.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/dgram.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/diagnostics_channel.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/dns.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/dns/promises.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/domain.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/dom-events.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/events.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/fs.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/fs/promises.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/http.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/http2.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/https.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/inspector.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/module.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/net.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/os.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/path.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/perf_hooks.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/process.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/punycode.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/querystring.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/readline.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/readline/promises.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/repl.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/sea.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/stream.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/stream/promises.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/stream/consumers.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/stream/web.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/string_decoder.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/test.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/timers.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/timers/promises.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/tls.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/trace_events.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/tty.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/url.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/util.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/v8.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/vm.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/wasi.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/worker_threads.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/zlib.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/globals.global.d.ts","../../.yarn/cache/@types-node-npm-20.16.2-fa541092c6-74fac185db.zip/node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"de0558c32956adb72d0268d32d3050dce15803b6bf59206688f8b0b488592596","impliedFormat":1},{"version":"518bfa10e9f2105103463068275a89d86902b7e02e94ed7db0169e74350fec67","impliedFormat":1},{"version":"9f9bf4e940aefa7ef44597758c6ade81f743da4e9d88f25937e407c36203cf97","impliedFormat":1},{"version":"2b68bf4cbb50f65dcbfcf64a8dacdb623b77afaaf612a4236175d0262ebae204","impliedFormat":1},{"version":"aada7c7be68f27973af9c0c7775100ea81630e58ede26667e6cab8466ee166fa","signature":"975be6b55808202730af14b3b1d514d015ab8c0406175bfd49deaf86c21fd3b2","impliedFormat":1},{"version":"f664cabf5c21b3a992b5d5cd2adbb0b2c30e8321470cbd47a394768d43752922","signature":"97bd0995737f7658f5ba714f91e1756087a84503ceb3e59e75b24437860bf648","impliedFormat":1},{"version":"dcc30f958e5f07b33a0836617d9d13b252c1de77cbe147d5570d589b7bf9cfab","signature":"f26e0bd7c5923fa75dcbdeec97001913bd72998e7c3c52cb3b347efa513f6005","impliedFormat":1},{"version":"4850c4e8645fb4c3cecaa5dce8b385e0ae4360bc6abb6dfe9e42f032d298d036","signature":"a8613e5e19199cc62f70f932f56eb46e515c3e2b715812dc39182dd4782f6c9e","impliedFormat":1},{"version":"fae33ad5d0a8abc8c1da9ad43ac009b9de79e7b4eaa414cad3bf4bb53c09c1b4","signature":"49453ca84574b73420a430ef6434ca9fe4c6a535957463223d60770580a0e048","impliedFormat":1},{"version":"33b68ea5fc924a7da8d419404b412d62f6cbc3b7f0eeaff3ae3bef12e7b5b4a2","signature":"9670a44cf2158cea34d357409658b31c869dcfaed7bb8851ce3fc4893ad8f994","impliedFormat":1},{"version":"737fc83d59ab8841de0c546c3ae2d0ccb0e22a1cded1ed46c64bed9ea4dfa624","impliedFormat":1},{"version":"b8bc1d5b09814e118eb62da6c6755c026c380fd2ba13541bfb221b8d4a7c0fd9","signature":"38d53e67e7c578c4dcdc58d86accd02eff16b158f1705ac27ec5ef9499c6150b","impliedFormat":1},{"version":"c9d20532380507db21c6dc32798bc1706a60864dba70a768c87c687e5217ae94","affectsGlobalScope":true,"impliedFormat":99},{"version":"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true,"impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"9d8f6e55f5a038f4dca0cacd6566f9b82c576eee35c694b89230e9dec1895a77","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","impliedFormat":1},{"version":"53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6","impliedFormat":1},{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","impliedFormat":1},{"version":"5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","impliedFormat":1},{"version":"d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true,"impliedFormat":1},{"version":"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","impliedFormat":1},{"version":"304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","impliedFormat":1},{"version":"1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","impliedFormat":1},{"version":"98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","impliedFormat":1},{"version":"c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","impliedFormat":1},{"version":"a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","impliedFormat":1},{"version":"d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900","impliedFormat":1},{"version":"452e8a437aa57fe832dece2a5d3ea8dd0ab1de03ca778d09798c56ece0a29e80","affectsGlobalScope":true,"impliedFormat":1},{"version":"a20f1e119615bf7632729fd89b6c0b5ffdc2df3b512d6304146294528e3ebe19","affectsGlobalScope":true,"impliedFormat":1},{"version":"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","impliedFormat":1},{"version":"6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","impliedFormat":1},{"version":"56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","impliedFormat":1},{"version":"139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","impliedFormat":1},{"version":"7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","impliedFormat":1},{"version":"2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927","impliedFormat":1},{"version":"a321f588d51d742955993766d2969ed19006110a080572bfd24054178a5be640","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","impliedFormat":1},{"version":"9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","impliedFormat":1},{"version":"e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","impliedFormat":1},{"version":"b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0","impliedFormat":1},{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21fcdcb618236f0feaca7e511e2da10c19970f86e09c934cef2d45b340ad92b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","impliedFormat":1},{"version":"4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"b33379077284c9e55d2410d814b71b15522c5f71f9e93e15a8c3c41d463b00f6","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","impliedFormat":1}],"root":[[68,75]],"options":{"composite":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./cjs","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"useDefineForClassFields":true,"verbatimModuleSyntax":false},"fileIdsList":[[77],[117],[118,123,152],[119,124,130,131,138,149,160],[119,120,130,138],[121,161],[122,123,131,139],[123,149,157],[124,126,130,138],[117,125],[126,127],[130],[128,130],[117,130],[130,131,132,149,160],[130,131,132,145,149,152],[115,118,165],[126,130,133,138,149,160],[130,131,133,134,138,149,157,160],[133,135,149,157,160],[77,78,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167],[130,136],[137,160,165],[126,130,138,149],[139],[140],[117,141],[77,78,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166],[143],[144],[130,145,146],[145,147,161,163],[118,130,149,150,151,152],[118,149,151],[149,150],[152],[153],[77,149],[130,155,156],[155,156],[123,138,149,157],[158],[138,159],[118,133,144,160],[123,161],[149,162],[137,163],[164],[118,123,130,132,141,149,160,163,165],[149,166],[66],[65],[87,91,160],[87,149,160],[82],[84,87,157,160],[138,157],[168],[82,168],[84,87,138,160],[79,80,83,86,118,130,149,160],[87,94],[79,85],[87,108,109],[83,87,118,152,160,168],[118,168],[108,118,168],[81,82,168],[87],[81,82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114],[87,102],[87,94,95],[85,87,95,96],[86],[79,82,87],[87,91,95,96],[91],[85,87,90,160],[79,84,87,94],[118,149],[82,87,108,118,165,168],[63,68],[63,71,72,73],[63,67,68],[63,68,69,70,74],[63,64,67]],"referencedMap":[[77,1],[78,1],[117,2],[118,3],[119,4],[120,5],[121,6],[122,7],[123,8],[124,9],[125,10],[126,11],[127,11],[129,12],[128,13],[130,14],[131,15],[132,16],[116,17],[133,18],[134,19],[135,20],[168,21],[136,22],[137,23],[138,24],[139,25],[140,26],[141,27],[142,28],[143,29],[144,30],[145,31],[146,31],[147,32],[149,33],[151,34],[150,35],[152,36],[153,37],[154,38],[155,39],[156,40],[157,41],[158,42],[159,43],[160,44],[161,45],[162,46],[163,47],[164,48],[165,49],[166,50],[67,51],[66,52],[94,53],[104,54],[93,53],[114,55],[85,56],[84,57],[113,58],[107,59],[112,60],[87,61],[101,62],[86,63],[110,64],[82,65],[81,66],[111,67],[83,68],[88,69],[92,69],[115,70],[105,71],[96,72],[97,73],[99,74],[95,75],[98,76],[108,58],[90,77],[91,78],[100,79],[80,80],[103,71],[102,69],[109,81],[69,82],[74,83],[72,84],[71,82],[73,82],[70,82],[75,85],[68,86]],"latestChangedDtsFile":"./cjs/index.d.ts"},"version":"5.5.4"}
|