@budsbox/constraints 2.0.0 → 2.0.3
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.map +1 -0
- package/dist/{base.js → cjs/base.js} +4 -2
- package/dist/cjs/base.js.map +1 -0
- package/dist/cjs/dependencies/index.d.ts.map +1 -0
- package/dist/{dependencies → cjs/dependencies}/index.js +1 -0
- package/dist/cjs/dependencies/index.js.map +1 -0
- package/dist/cjs/dependencies/peer.d.ts.map +1 -0
- package/dist/{dependencies → cjs/dependencies}/peer.js +1 -0
- package/dist/cjs/dependencies/peer.js.map +1 -0
- package/dist/cjs/dependencies/root.d.ts.map +1 -0
- package/dist/{dependencies → cjs/dependencies}/root.js +12 -11
- package/dist/cjs/dependencies/root.js.map +1 -0
- package/dist/cjs/dependencies/workspace.d.ts.map +1 -0
- package/dist/{dependencies → cjs/dependencies}/workspace.js +1 -0
- package/dist/cjs/dependencies/workspace.js.map +1 -0
- package/dist/cjs/esm.d.ts.map +1 -0
- package/dist/{esm.js → cjs/esm.js} +1 -0
- package/dist/cjs/esm.js.map +1 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/{index.js → cjs/index.js} +1 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/{utils.d.ts → cjs/utils.d.ts} +0 -4
- package/dist/cjs/utils.d.ts.map +1 -0
- package/dist/{utils.js → cjs/utils.js} +1 -10
- package/dist/cjs/utils.js.map +1 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -0
- package/package.json +10 -11
- package/dist/base.d.ts.map +0 -1
- package/dist/dependencies/index.d.ts.map +0 -1
- package/dist/dependencies/peer.d.ts.map +0 -1
- package/dist/dependencies/root.d.ts.map +0 -1
- package/dist/dependencies/workspace.d.ts.map +0 -1
- package/dist/esm.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/utils.d.ts.map +0 -1
- /package/dist/{base.d.ts → cjs/base.d.ts} +0 -0
- /package/dist/{dependencies → cjs/dependencies}/index.d.ts +0 -0
- /package/dist/{dependencies → cjs/dependencies}/peer.d.ts +0 -0
- /package/dist/{dependencies → cjs/dependencies}/root.d.ts +0 -0
- /package/dist/{dependencies → cjs/dependencies}/workspace.d.ts +0 -0
- /package/dist/{esm.d.ts → cjs/esm.d.ts} +0 -0
- /package/dist/{index.d.ts → cjs/index.d.ts} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../src/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,iBAAiB,EAAe,MAAM,SAAS,CAAC;AAE9D,OAAO,EAAE,KAAK,UAAU,EAAa,MAAM,SAAS,CAAC;AAGrD,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"}
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.createManifestFieldsConstraint = exports.constraintPackageName = void 0;
|
|
4
4
|
const utils_1 = require("./utils");
|
|
5
5
|
const utils_2 = require("./utils");
|
|
6
|
+
const string_1 = require("@budsbox/iso-utils/string");
|
|
6
7
|
const constraintPackageName = ({ Yarn }) => {
|
|
7
8
|
const root = (0, utils_2.getRootWs)(Yarn);
|
|
8
9
|
const rootIdent = root.ident;
|
|
@@ -10,7 +11,7 @@ const constraintPackageName = ({ Yarn }) => {
|
|
|
10
11
|
root.error('Missing field "name" in the root\'s package.json');
|
|
11
12
|
return;
|
|
12
13
|
}
|
|
13
|
-
const { ns } = (0,
|
|
14
|
+
const { ns } = (0, string_1.parsePackageName)(rootIdent);
|
|
14
15
|
if (ns != null) {
|
|
15
16
|
for (const workspace of Yarn.workspaces()) {
|
|
16
17
|
const { ident } = workspace;
|
|
@@ -18,7 +19,7 @@ const constraintPackageName = ({ Yarn }) => {
|
|
|
18
19
|
workspace.error(`The workspace "${workspace.cwd}" has no package name`);
|
|
19
20
|
}
|
|
20
21
|
else {
|
|
21
|
-
const parsedIdent = (0,
|
|
22
|
+
const parsedIdent = (0, string_1.parsePackageName)(ident);
|
|
22
23
|
if (parsedIdent.ns == null) {
|
|
23
24
|
workspace.set('name', `${ns}${ident}`);
|
|
24
25
|
}
|
|
@@ -48,3 +49,4 @@ const createManifestFieldsConstraint = ({ sharedFields, requiredFields = [] }) =
|
|
|
48
49
|
}
|
|
49
50
|
};
|
|
50
51
|
exports.createManifestFieldsConstraint = createManifestFieldsConstraint;
|
|
52
|
+
//# sourceMappingURL=base.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.js","sourceRoot":"","sources":["../../src/base.ts"],"names":[],"mappings":";;;AAAA,mCAA8D;AAE9D,mCAAqD;AACrD,sDAA6D;AAEtD,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,yBAAgB,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,yBAAgB,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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -7,3 +7,4 @@ var peer_js_1 = require("./peer.js");
|
|
|
7
7
|
Object.defineProperty(exports, "createPeerDependenciesConstraint", { enumerable: true, get: function () { return peer_js_1.createPeerDependenciesConstraint; } });
|
|
8
8
|
var workspace_js_1 = require("./workspace.js");
|
|
9
9
|
Object.defineProperty(exports, "createWorkspaceDependenciesConstraint", { enumerable: true, get: function () { return workspace_js_1.createWorkspaceDependenciesConstraint; } });
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"root.d.ts","sourceRoot":"","sources":["../../../src/dependencies/root.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAa,MAAM,UAAU,CAAC;AAGtD;;;;GAIG;AACH,eAAO,MAAM,0BAA0B,EAAE,UAuCxC,CAAC"}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.constraintRootDependencies = void 0;
|
|
4
4
|
const utils_1 = require("../utils");
|
|
5
|
+
const type_guards_1 = require("@budsbox/iso-utils/type-guards");
|
|
5
6
|
/**
|
|
6
7
|
* This function ensures that packages that more than one workspace depends on are added to the root workspace dependencies.
|
|
7
8
|
*
|
|
@@ -11,16 +12,15 @@ const constraintRootDependencies = ({ Yarn }) => {
|
|
|
11
12
|
const root = (0, utils_1.getRootWs)(Yarn);
|
|
12
13
|
const dependencyRecords = Yarn.workspaces()
|
|
13
14
|
.filter((ws) => ws !== root)
|
|
14
|
-
.reduce((acc, workspace) => ({
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}), {});
|
|
15
|
+
.reduce((acc, workspace) => Yarn.dependencies({ workspace }).reduce((depAcc, { ident, range }) => ([
|
|
16
|
+
Yarn.dependency({ workspace: root, ident }),
|
|
17
|
+
Yarn.workspace({ ident }),
|
|
18
|
+
].every(type_guards_1.isNil)) ?
|
|
19
|
+
{
|
|
20
|
+
...depAcc,
|
|
21
|
+
[ident]: [...(depAcc[ident] ?? []), range],
|
|
22
|
+
}
|
|
23
|
+
: depAcc, acc), {});
|
|
24
24
|
for (const [ident, ranges] of Object.entries(dependencyRecords)) {
|
|
25
25
|
if (ranges.length > 1) {
|
|
26
26
|
const rangeSet = new Set(ranges);
|
|
@@ -28,10 +28,11 @@ const constraintRootDependencies = ({ Yarn }) => {
|
|
|
28
28
|
root.error(`More than one workspaces has dependency "${ident}" with following ranges: "${[...rangeSet].join('", "')}".
|
|
29
29
|
Please add this dependency to the root workspace manually`);
|
|
30
30
|
}
|
|
31
|
-
else if (Yarn.dependency({ workspace: root, ident })
|
|
31
|
+
else if ((0, type_guards_1.isNil)(Yarn.dependency({ workspace: root, ident }))) {
|
|
32
32
|
root.set(['dependencies', ident], rangeSet.values().next().value);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
exports.constraintRootDependencies = constraintRootDependencies;
|
|
38
|
+
//# sourceMappingURL=root.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"root.js","sourceRoot":"","sources":["../../../src/dependencies/root.ts"],"names":[],"mappings":";;;AAAA,oCAAsD;AACtD,gEAAuD;AAEvD;;;;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,CACjB,IAAI,CAAC,YAAY,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC,MAAM,CACrC,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,CAC3B,CACE;QACE,IAAI,CAAC,UAAU,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;QAC3C,IAAI,CAAC,SAAS,CAAC,EAAE,KAAK,EAAE,CAAC;KAC1B,CAAC,KAAK,CAAC,mBAAK,CAAC,CACf,CAAC,CAAC;QACD;YACE,GAAG,MAAM;YACT,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,CAAC;SAC3C;QACH,CAAC,CAAC,MAAM,EACV,GAAG,CACJ,EACH,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,IAAA,mBAAK,EAAC,IAAI,CAAC,UAAU,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC;gBAC9D,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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -17,3 +17,4 @@ var index_js_1 = require("./dependencies/index.js");
|
|
|
17
17
|
Object.defineProperty(exports, "constraintRootDependencies", { enumerable: true, get: function () { return index_js_1.constraintRootDependencies; } });
|
|
18
18
|
Object.defineProperty(exports, "createPeerDependenciesConstraint", { enumerable: true, get: function () { return index_js_1.createPeerDependenciesConstraint; } });
|
|
19
19
|
Object.defineProperty(exports, "createWorkspaceDependenciesConstraint", { enumerable: true, get: function () { return index_js_1.createWorkspaceDependenciesConstraint; } });
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -8,8 +8,4 @@ export type ConstraintFactory<Options extends object> = object extends Options ?
|
|
|
8
8
|
export declare function getRootWs(yarn: Yarn.Constraints.Yarn): Yarn.Constraints.Workspace;
|
|
9
9
|
export declare function getManifest<T extends object = Record<string, unknown>>(workspace: Yarn.Constraints.Workspace): T;
|
|
10
10
|
export declare function getRangeConsideringRoot(yarn: Yarn.Constraints.Yarn, dependency: Yarn.Constraints.Dependency): string;
|
|
11
|
-
export declare function parsePackageName(packageName: string): {
|
|
12
|
-
ns: `@${string}/` | null;
|
|
13
|
-
name: string;
|
|
14
|
-
};
|
|
15
11
|
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRootWs = getRootWs;
|
|
4
4
|
exports.getManifest = getManifest;
|
|
5
5
|
exports.getRangeConsideringRoot = getRangeConsideringRoot;
|
|
6
|
-
exports.parsePackageName = parsePackageName;
|
|
7
6
|
function getRootWs(yarn) {
|
|
8
7
|
const [root] = yarn.workspaces({ cwd: '.' });
|
|
9
8
|
if (root == null) {
|
|
@@ -25,12 +24,4 @@ function getRangeConsideringRoot(yarn, dependency) {
|
|
|
25
24
|
});
|
|
26
25
|
return rootDep == null ? dependency.range : rootDep.range;
|
|
27
26
|
}
|
|
28
|
-
|
|
29
|
-
const [ns] = /^@[^/]+\//.exec(packageName) ?? [
|
|
30
|
-
null,
|
|
31
|
-
];
|
|
32
|
-
return {
|
|
33
|
-
ns,
|
|
34
|
-
name: packageName.replace(ns ?? '', ''),
|
|
35
|
-
};
|
|
36
|
-
}
|
|
27
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":";;AAaA,8BAUC;AACD,kCAUC;AAED,0DAUC;AAjCD,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"}
|
|
@@ -0,0 +1 @@
|
|
|
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","../../packages/types/dist/cjs/string.d.ts","../../packages/iso-utils/dist/cjs/string.d.ts","../src/base.ts","../src/esm.ts","../../packages/iso-utils/dist/cjs/type-guards.d.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":"f27cd168286c9d40ebc88671602bdf893b8b6cd1c437fdaf6570ac94935e2ce3","impliedFormat":1},{"version":"518bfa10e9f2105103463068275a89d86902b7e02e94ed7db0169e74350fec67","impliedFormat":1},{"version":"9f9bf4e940aefa7ef44597758c6ade81f743da4e9d88f25937e407c36203cf97","impliedFormat":1},{"version":"2b68bf4cbb50f65dcbfcf64a8dacdb623b77afaaf612a4236175d0262ebae204","impliedFormat":1},{"version":"5297653de9acedd81680404f36a4a0e787742f5aeeec9b03ee5c84a84e65e1d4","signature":"e8bb5f17299478a630098c8172a779917b0dc3ea19d7dbdbbff622294a82a070","impliedFormat":1},{"version":"75c633f9d2cf35ea66483e5a9d5b966270c5eb8df981d30676e9ecbe7f1557b6","impliedFormat":1},{"version":"90f6d71d21cb2f14e1c11cbd5b5bcfbd7060293cc15466e014f748d8fc87bfae","impliedFormat":1},{"version":"e6a7f0803fa07aea9cd1f4b93584781db3c1983aa5e954a4e5959aec0fedfe07","signature":"97bd0995737f7658f5ba714f91e1756087a84503ceb3e59e75b24437860bf648","impliedFormat":1},{"version":"dcc30f958e5f07b33a0836617d9d13b252c1de77cbe147d5570d589b7bf9cfab","signature":"f26e0bd7c5923fa75dcbdeec97001913bd72998e7c3c52cb3b347efa513f6005","impliedFormat":1},{"version":"e18a07eaad6b0124c4dfa3a495fb78bd9bd1fc54f99147d17d0cf6ddc96c0e16","impliedFormat":1},{"version":"546b6020129a33fb2d4ea733239fc02bfc1b432a006cd3e15d4f7f1e89d2e573","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,71,72,[74,78]],"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":[[80],[120],[121,126,155],[122,127,133,134,141,152,163],[122,123,133,141],[124,164],[125,126,134,142],[126,152,160],[127,129,133,141],[120,128],[129,130],[133],[131,133],[120,133],[133,134,135,152,163],[133,134,135,148,152,155],[118,121,168],[129,133,136,141,152,163],[133,134,136,137,141,152,160,163],[136,138,152,160,163],[80,81,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,168,169,170],[133,139],[140,163,168],[129,133,141,152],[142],[143],[120,144],[80,81,120,121,122,123,124,125,126,127,128,129,130,131,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,168,169],[146],[147],[133,148,149],[148,150,164,166],[121,133,152,153,154,155],[121,152,154],[152,153],[155],[156],[80,152],[133,158,159],[158,159],[126,141,152,160],[161],[141,162],[121,136,147,163],[126,164],[152,165],[140,166],[167],[121,126,133,135,144,152,163,166,168],[152,169],[66],[65],[90,94,163],[90,152,163],[85],[87,90,160,163],[141,160],[171],[85,171],[87,90,141,163],[82,83,86,89,121,133,152,163],[90,97],[82,88],[90,111,112],[86,90,121,155,163,171],[121,171],[111,121,171],[84,85,171],[90],[84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117],[90,105],[90,97,98],[88,90,98,99],[89],[82,85,90],[90,94,98,99],[94],[88,90,93,163],[82,87,90,97],[121,152],[85,90,111,121,168,171],[63,68,70],[63,74,75,76],[63,67,68],[63,68,73],[63,68],[63,68,71,72,77],[63,64,67],[64,69],[64]],"referencedMap":[[80,1],[81,1],[120,2],[121,3],[122,4],[123,5],[124,6],[125,7],[126,8],[127,9],[128,10],[129,11],[130,11],[132,12],[131,13],[133,14],[134,15],[135,16],[119,17],[136,18],[137,19],[138,20],[171,21],[139,22],[140,23],[141,24],[142,25],[143,26],[144,27],[145,28],[146,29],[147,30],[148,31],[149,31],[150,32],[152,33],[154,34],[153,35],[155,36],[156,37],[157,38],[158,39],[159,40],[160,41],[161,42],[162,43],[163,44],[164,45],[165,46],[166,47],[167,48],[168,49],[169,50],[67,51],[66,52],[97,53],[107,54],[96,53],[117,55],[88,56],[87,57],[116,58],[110,59],[115,60],[90,61],[104,62],[89,63],[113,64],[85,65],[84,66],[114,67],[86,68],[91,69],[95,69],[118,70],[108,71],[99,72],[100,73],[102,74],[98,75],[101,76],[111,58],[93,77],[94,78],[103,79],[83,80],[106,71],[105,69],[112,81],[71,82],[77,83],[75,84],[74,85],[76,86],[72,86],[78,87],[68,88],[70,89],[73,90]],"latestChangedDtsFile":"./cjs/index.d.ts"},"version":"5.5.4"}
|
package/package.json
CHANGED
|
@@ -1,29 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budsbox/constraints",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"homepage": "https://gitlab.com/budsbox/fe/seed",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://gitlab.com/budsbox/fe/seed/-/issues"
|
|
7
7
|
},
|
|
8
|
+
"repository": "gitlab:budsbox/fe/seed",
|
|
8
9
|
"license": "MIT",
|
|
9
10
|
"author": "Konstantin Kutsyllo <trikadin@pm.me>",
|
|
10
11
|
"type": "commonjs",
|
|
11
12
|
"imports": {
|
|
12
13
|
"#package.json": "./package.json",
|
|
13
14
|
"#@": {
|
|
14
|
-
"require": "./dist/index.js",
|
|
15
|
-
"types": "./dist/index.d.ts"
|
|
15
|
+
"require": "./dist/cjs/index.js",
|
|
16
|
+
"types": "./dist/cjs/index.d.ts"
|
|
16
17
|
}
|
|
17
18
|
},
|
|
18
19
|
"exports": {
|
|
19
20
|
"./package.json": "./package.json",
|
|
20
21
|
".": {
|
|
21
|
-
"require": "./dist/index.js",
|
|
22
|
-
"types": "./dist/index.d.ts"
|
|
22
|
+
"require": "./dist/cjs/index.js",
|
|
23
|
+
"types": "./dist/cjs/index.d.ts"
|
|
23
24
|
}
|
|
24
25
|
},
|
|
25
|
-
"main": "./dist/index.js",
|
|
26
|
-
"types": "./dist/index.d.ts",
|
|
27
26
|
"files": [
|
|
28
27
|
"dist"
|
|
29
28
|
],
|
|
@@ -31,13 +30,13 @@
|
|
|
31
30
|
"prepack": "yarn p:ts:prepack"
|
|
32
31
|
},
|
|
33
32
|
"dependencies": {
|
|
34
|
-
"@budsbox/iso-utils": "^1.0
|
|
33
|
+
"@budsbox/iso-utils": "^1.2.0",
|
|
35
34
|
"@yarnpkg/types": "^4.0.0"
|
|
36
35
|
},
|
|
37
36
|
"devDependencies": {
|
|
38
|
-
"@budsbox/linting": "^1.3.
|
|
39
|
-
"@budsbox/tsconfigs": "^
|
|
40
|
-
"@budsbox/types": "^
|
|
37
|
+
"@budsbox/linting": "^1.3.2",
|
|
38
|
+
"@budsbox/tsconfigs": "^3.0.0",
|
|
39
|
+
"@budsbox/types": "^2.0.0",
|
|
41
40
|
"@eslint/js": "^9.9.1",
|
|
42
41
|
"@types/node": "^20.16.2",
|
|
43
42
|
"@typescript-eslint/parser": "^8.3.0",
|
package/dist/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"}
|
|
@@ -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":"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":"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":"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"}
|
package/dist/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/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/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"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|