@storm-software/workspace-tools 1.131.0 → 1.133.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +3 -1
- package/config/nx.json +1 -1
- package/index.js +146 -119
- package/meta.json +1 -1
- package/package.json +1 -1
- package/packages/config/src/define-config.d.ts +18 -0
- package/packages/config/src/schema.d.ts +254 -0
- package/packages/config-tools/src/config-file/get-config-file.d.ts +1 -1
- package/packages/config-tools/src/utilities/get-default-config.d.ts +1 -1
- package/src/base/index.js +136 -109
- package/src/executors/clean-package/executor.js +36 -8
- package/src/executors/rolldown/executor.js +36 -8
- package/src/executors/size-limit/executor.js +36 -8
- package/src/executors/tsup/executor.js +36 -8
- package/src/executors/tsup-browser/executor.js +36 -8
- package/src/executors/tsup-neutral/executor.js +36 -8
- package/src/executors/tsup-node/executor.js +36 -8
- package/src/executors/typia/executor.js +36 -8
- package/src/executors/unbuild/executor.js +36 -8
- package/src/generators/browser-library/generator.js +136 -109
- package/src/generators/config-schema/generator.js +36 -8
- package/src/generators/neutral-library/generator.js +136 -109
- package/src/generators/node-library/generator.js +136 -109
- package/src/generators/preset/generator.js +38 -10
- package/src/generators/release-version/generator.js +44 -16
- package/src/utils/index.js +36 -8
package/src/base/index.js
CHANGED
|
@@ -61292,8 +61292,8 @@ var init_correct_paths = __esm({
|
|
|
61292
61292
|
if (!path5) {
|
|
61293
61293
|
return "";
|
|
61294
61294
|
}
|
|
61295
|
-
if (path5
|
|
61296
|
-
|
|
61295
|
+
if (!path5.toUpperCase().startsWith("C:") && path5.includes("\\")) {
|
|
61296
|
+
path5 = `C:${path5}`;
|
|
61297
61297
|
}
|
|
61298
61298
|
return path5.replaceAll("\\", "/");
|
|
61299
61299
|
};
|
|
@@ -65302,13 +65302,15 @@ var init_lib = __esm({
|
|
|
65302
65302
|
});
|
|
65303
65303
|
|
|
65304
65304
|
// packages/config/src/schema.ts
|
|
65305
|
-
var DarkColorSchema, LightColorSchema, BrandColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
65305
|
+
var DarkColorSchema, LightColorSchema, BrandColorSchema, Brand2ColorSchema, Brand3ColorSchema, AccentColorSchema, HelpColorSchema, SuccessColorSchema, InfoColorSchema, WarningColorSchema, ErrorColorSchema, FatalColorSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, RegistryUrlConfigSchema, RegistryConfigSchema, ColorConfigSchema, ColorConfigMapSchema, StormConfigSchema;
|
|
65306
65306
|
var init_schema = __esm({
|
|
65307
65307
|
"packages/config/src/schema.ts"() {
|
|
65308
65308
|
init_lib();
|
|
65309
|
-
DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#
|
|
65309
|
+
DarkColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
|
|
65310
65310
|
LightColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
65311
65311
|
BrandColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
65312
|
+
Brand2ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
|
|
65313
|
+
Brand3ColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
|
|
65312
65314
|
AccentColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
65313
65315
|
HelpColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
|
|
65314
65316
|
SuccessColorSchema = z2.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -65320,6 +65322,8 @@ var init_schema = __esm({
|
|
|
65320
65322
|
foreground: LightColorSchema,
|
|
65321
65323
|
background: DarkColorSchema,
|
|
65322
65324
|
brand: BrandColorSchema,
|
|
65325
|
+
brand2: Brand2ColorSchema,
|
|
65326
|
+
brand3: Brand3ColorSchema,
|
|
65323
65327
|
accent: AccentColorSchema,
|
|
65324
65328
|
help: HelpColorSchema,
|
|
65325
65329
|
success: SuccessColorSchema,
|
|
@@ -65332,6 +65336,8 @@ var init_schema = __esm({
|
|
|
65332
65336
|
foreground: DarkColorSchema,
|
|
65333
65337
|
background: LightColorSchema,
|
|
65334
65338
|
brand: BrandColorSchema,
|
|
65339
|
+
brand2: Brand2ColorSchema,
|
|
65340
|
+
brand3: Brand3ColorSchema,
|
|
65335
65341
|
accent: AccentColorSchema,
|
|
65336
65342
|
help: HelpColorSchema,
|
|
65337
65343
|
success: SuccessColorSchema,
|
|
@@ -65348,6 +65354,8 @@ var init_schema = __esm({
|
|
|
65348
65354
|
dark: DarkColorSchema,
|
|
65349
65355
|
light: LightColorSchema,
|
|
65350
65356
|
brand: BrandColorSchema,
|
|
65357
|
+
brand2: Brand2ColorSchema,
|
|
65358
|
+
brand3: Brand3ColorSchema,
|
|
65351
65359
|
accent: AccentColorSchema,
|
|
65352
65360
|
help: HelpColorSchema,
|
|
65353
65361
|
success: SuccessColorSchema,
|
|
@@ -65475,15 +65483,17 @@ var init_src = __esm({
|
|
|
65475
65483
|
var import_node_fs10, import_node_path6, DEFAULT_COLOR_CONFIG, DEFAULT_STORM_CONFIG, getDefaultConfig;
|
|
65476
65484
|
var init_get_default_config = __esm({
|
|
65477
65485
|
"packages/config-tools/src/utilities/get-default-config.ts"() {
|
|
65486
|
+
init_src();
|
|
65478
65487
|
import_node_fs10 = require("node:fs");
|
|
65479
65488
|
import_node_path6 = require("node:path");
|
|
65480
|
-
init_src();
|
|
65481
65489
|
init_find_workspace_root();
|
|
65482
65490
|
DEFAULT_COLOR_CONFIG = {
|
|
65483
65491
|
light: {
|
|
65484
65492
|
background: "#f4f4f5",
|
|
65485
65493
|
foreground: "#1d232a",
|
|
65486
65494
|
brand: "#1fb2a6",
|
|
65495
|
+
brand2: "#7434DB",
|
|
65496
|
+
brand3: "#00C2CE",
|
|
65487
65497
|
help: "#8250df",
|
|
65488
65498
|
success: "#087f5b",
|
|
65489
65499
|
info: "#0550ae",
|
|
@@ -65491,9 +65501,11 @@ var init_get_default_config = __esm({
|
|
|
65491
65501
|
error: "#a40e26"
|
|
65492
65502
|
},
|
|
65493
65503
|
dark: {
|
|
65494
|
-
background: "#
|
|
65504
|
+
background: "#0D1017",
|
|
65495
65505
|
foreground: "#fcfcf5",
|
|
65496
65506
|
brand: "#1fb2a6",
|
|
65507
|
+
brand2: "#7434DB",
|
|
65508
|
+
brand3: "#00C2CE",
|
|
65497
65509
|
help: "#8256D0",
|
|
65498
65510
|
success: "#087f5b",
|
|
65499
65511
|
info: "#316DCA",
|
|
@@ -67271,7 +67283,7 @@ ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.fa
|
|
|
67271
67283
|
console.error(
|
|
67272
67284
|
`
|
|
67273
67285
|
${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.error ?? "#f85149").whiteBright(
|
|
67274
|
-
" \u2718
|
|
67286
|
+
" \u2718 Error "
|
|
67275
67287
|
)} ${_chalk.hex(colors.error ?? "#f85149")(formatLogMessage(message))}
|
|
67276
67288
|
`
|
|
67277
67289
|
);
|
|
@@ -67723,6 +67735,8 @@ var init_get_env = __esm({
|
|
|
67723
67735
|
dark: process.env[`${prefix}DARK`],
|
|
67724
67736
|
light: process.env[`${prefix}LIGHT`],
|
|
67725
67737
|
brand: process.env[`${prefix}BRAND`],
|
|
67738
|
+
brand2: process.env[`${prefix}BRAND2`],
|
|
67739
|
+
brand3: process.env[`${prefix}BRAND3`],
|
|
67726
67740
|
accent: process.env[`${prefix}ACCENT`],
|
|
67727
67741
|
help: process.env[`${prefix}HELP`],
|
|
67728
67742
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -67745,6 +67759,8 @@ var init_get_env = __esm({
|
|
|
67745
67759
|
foreground: process.env[`${prefix}FOREGROUND`],
|
|
67746
67760
|
background: process.env[`${prefix}BACKGROUND`],
|
|
67747
67761
|
brand: process.env[`${prefix}BRAND`],
|
|
67762
|
+
brand2: process.env[`${prefix}BRAND2`],
|
|
67763
|
+
brand3: process.env[`${prefix}BRAND3`],
|
|
67748
67764
|
accent: process.env[`${prefix}ACCENT`],
|
|
67749
67765
|
help: process.env[`${prefix}HELP`],
|
|
67750
67766
|
success: process.env[`${prefix}SUCCESS`],
|
|
@@ -67762,8 +67778,8 @@ var setExtensionEnv, setConfigEnv, setThemeColorConfigEnv, setSingleThemeColorCo
|
|
|
67762
67778
|
var init_set_env = __esm({
|
|
67763
67779
|
"packages/config-tools/src/env/set-env.ts"() {
|
|
67764
67780
|
init_types2();
|
|
67765
|
-
init_get_log_level();
|
|
67766
67781
|
init_correct_paths();
|
|
67782
|
+
init_get_log_level();
|
|
67767
67783
|
setExtensionEnv = (extensionName, extension) => {
|
|
67768
67784
|
for (const key of Object.keys(extension ?? {})) {
|
|
67769
67785
|
if (extension[key]) {
|
|
@@ -67949,6 +67965,12 @@ var init_set_env = __esm({
|
|
|
67949
67965
|
if (config.brand) {
|
|
67950
67966
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
67951
67967
|
}
|
|
67968
|
+
if (config.brand2) {
|
|
67969
|
+
process.env[`${prefix}BRAND2`] = config.brand2;
|
|
67970
|
+
}
|
|
67971
|
+
if (config.brand3) {
|
|
67972
|
+
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
67973
|
+
}
|
|
67952
67974
|
if (config.accent) {
|
|
67953
67975
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
67954
67976
|
}
|
|
@@ -67987,6 +68009,12 @@ var init_set_env = __esm({
|
|
|
67987
68009
|
if (config.brand) {
|
|
67988
68010
|
process.env[`${prefix}BRAND`] = config.brand;
|
|
67989
68011
|
}
|
|
68012
|
+
if (config.brand2) {
|
|
68013
|
+
process.env[`${prefix}BRAND2`] = config.brand2;
|
|
68014
|
+
}
|
|
68015
|
+
if (config.brand3) {
|
|
68016
|
+
process.env[`${prefix}BRAND3`] = config.brand3;
|
|
68017
|
+
}
|
|
67990
68018
|
if (config.accent) {
|
|
67991
68019
|
process.env[`${prefix}ACCENT`] = config.accent;
|
|
67992
68020
|
}
|
|
@@ -68668,12 +68696,12 @@ var init_tslib_es6 = __esm({
|
|
|
68668
68696
|
}
|
|
68669
68697
|
});
|
|
68670
68698
|
|
|
68671
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
68699
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/package.json
|
|
68672
68700
|
var require_package2 = __commonJS({
|
|
68673
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
68701
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/package.json"(exports2, module2) {
|
|
68674
68702
|
module2.exports = {
|
|
68675
68703
|
name: "@nx/js",
|
|
68676
|
-
version: "19.5.
|
|
68704
|
+
version: "19.5.3",
|
|
68677
68705
|
private: false,
|
|
68678
68706
|
description: "The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects. ",
|
|
68679
68707
|
repository: {
|
|
@@ -68731,9 +68759,9 @@ var require_package2 = __commonJS({
|
|
|
68731
68759
|
semver: "^7.5.3",
|
|
68732
68760
|
"source-map-support": "0.5.19",
|
|
68733
68761
|
tslib: "^2.3.0",
|
|
68734
|
-
"@nx/devkit": "19.5.
|
|
68735
|
-
"@nx/workspace": "19.5.
|
|
68736
|
-
"@nrwl/js": "19.5.
|
|
68762
|
+
"@nx/devkit": "19.5.3",
|
|
68763
|
+
"@nx/workspace": "19.5.3",
|
|
68764
|
+
"@nrwl/js": "19.5.3"
|
|
68737
68765
|
},
|
|
68738
68766
|
peerDependencies: {
|
|
68739
68767
|
verdaccio: "^5.0.4"
|
|
@@ -68751,9 +68779,9 @@ var require_package2 = __commonJS({
|
|
|
68751
68779
|
}
|
|
68752
68780
|
});
|
|
68753
68781
|
|
|
68754
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
68782
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/versions.js
|
|
68755
68783
|
var require_versions = __commonJS({
|
|
68756
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
68784
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/versions.js"(exports2) {
|
|
68757
68785
|
"use strict";
|
|
68758
68786
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68759
68787
|
exports2.supportedTypescriptVersions = exports2.typescriptVersion = exports2.verdaccioVersion = exports2.typesNodeVersion = exports2.tsLibVersion = exports2.swcNodeVersion = exports2.swcHelpersVersion = exports2.swcCoreVersion = exports2.swcCliVersion = exports2.prettierVersion = exports2.esbuildVersion = exports2.nxVersion = void 0;
|
|
@@ -68772,9 +68800,9 @@ var require_versions = __commonJS({
|
|
|
68772
68800
|
}
|
|
68773
68801
|
});
|
|
68774
68802
|
|
|
68775
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
68803
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/add-tslib-dependencies.js
|
|
68776
68804
|
var require_add_tslib_dependencies = __commonJS({
|
|
68777
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
68805
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/add-tslib-dependencies.js"(exports2) {
|
|
68778
68806
|
"use strict";
|
|
68779
68807
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68780
68808
|
exports2.addTsLibDependencies = addTsLibDependencies;
|
|
@@ -68788,9 +68816,9 @@ var require_add_tslib_dependencies = __commonJS({
|
|
|
68788
68816
|
}
|
|
68789
68817
|
});
|
|
68790
68818
|
|
|
68791
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
68819
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/load-ts-transformers.js
|
|
68792
68820
|
var require_load_ts_transformers = __commonJS({
|
|
68793
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
68821
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/load-ts-transformers.js"(exports2, module2) {
|
|
68794
68822
|
"use strict";
|
|
68795
68823
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68796
68824
|
exports2.loadTsTransformers = loadTsTransformers;
|
|
@@ -68854,9 +68882,9 @@ var require_load_ts_transformers = __commonJS({
|
|
|
68854
68882
|
}
|
|
68855
68883
|
});
|
|
68856
68884
|
|
|
68857
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
68885
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/print-diagnostics.js
|
|
68858
68886
|
var require_print_diagnostics = __commonJS({
|
|
68859
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
68887
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/print-diagnostics.js"(exports2) {
|
|
68860
68888
|
"use strict";
|
|
68861
68889
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68862
68890
|
exports2.printDiagnostics = printDiagnostics;
|
|
@@ -68900,9 +68928,9 @@ var require_js_tokens = __commonJS({
|
|
|
68900
68928
|
}
|
|
68901
68929
|
});
|
|
68902
68930
|
|
|
68903
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
68931
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/code-frames/identifiers.js
|
|
68904
68932
|
var require_identifiers = __commonJS({
|
|
68905
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
68933
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/code-frames/identifiers.js"(exports2) {
|
|
68906
68934
|
"use strict";
|
|
68907
68935
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68908
68936
|
exports2.isReservedWord = isReservedWord;
|
|
@@ -68953,9 +68981,9 @@ var require_identifiers = __commonJS({
|
|
|
68953
68981
|
}
|
|
68954
68982
|
});
|
|
68955
68983
|
|
|
68956
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
68984
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/code-frames/highlight.js
|
|
68957
68985
|
var require_highlight = __commonJS({
|
|
68958
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
68986
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/code-frames/highlight.js"(exports2) {
|
|
68959
68987
|
"use strict";
|
|
68960
68988
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68961
68989
|
exports2.highlight = highlight;
|
|
@@ -69019,9 +69047,9 @@ var require_highlight = __commonJS({
|
|
|
69019
69047
|
}
|
|
69020
69048
|
});
|
|
69021
69049
|
|
|
69022
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
69050
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/ensure-typescript.js
|
|
69023
69051
|
var require_ensure_typescript = __commonJS({
|
|
69024
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
69052
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/ensure-typescript.js"(exports2) {
|
|
69025
69053
|
"use strict";
|
|
69026
69054
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
69027
69055
|
exports2.ensureTypescript = ensureTypescript;
|
|
@@ -276527,9 +276555,9 @@ ${e2.message}`;
|
|
|
276527
276555
|
}
|
|
276528
276556
|
});
|
|
276529
276557
|
|
|
276530
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
276558
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/ts-config.js
|
|
276531
276559
|
var require_ts_config = __commonJS({
|
|
276532
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
276560
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/ts-config.js"(exports2) {
|
|
276533
276561
|
"use strict";
|
|
276534
276562
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
276535
276563
|
exports2.readTsConfig = readTsConfig;
|
|
@@ -276612,9 +276640,9 @@ var require_ts_config = __commonJS({
|
|
|
276612
276640
|
}
|
|
276613
276641
|
});
|
|
276614
276642
|
|
|
276615
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
276643
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/run-type-check.js
|
|
276616
276644
|
var require_run_type_check = __commonJS({
|
|
276617
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
276645
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/run-type-check.js"(exports2) {
|
|
276618
276646
|
"use strict";
|
|
276619
276647
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
276620
276648
|
exports2.runTypeCheckWatch = runTypeCheckWatch;
|
|
@@ -276729,9 +276757,9 @@ var require_run_type_check = __commonJS({
|
|
|
276729
276757
|
}
|
|
276730
276758
|
});
|
|
276731
276759
|
|
|
276732
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
276760
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/get-source-nodes.js
|
|
276733
276761
|
var require_get_source_nodes = __commonJS({
|
|
276734
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
276762
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/get-source-nodes.js"(exports2) {
|
|
276735
276763
|
"use strict";
|
|
276736
276764
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
276737
276765
|
exports2.getSourceNodes = getSourceNodes;
|
|
@@ -276752,9 +276780,9 @@ var require_get_source_nodes = __commonJS({
|
|
|
276752
276780
|
}
|
|
276753
276781
|
});
|
|
276754
276782
|
|
|
276755
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
276783
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/swc/get-swcrc-path.js
|
|
276756
276784
|
var require_get_swcrc_path = __commonJS({
|
|
276757
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
276785
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/swc/get-swcrc-path.js"(exports2) {
|
|
276758
276786
|
"use strict";
|
|
276759
276787
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
276760
276788
|
exports2.getSwcrcPath = getSwcrcPath;
|
|
@@ -276770,9 +276798,9 @@ var require_get_swcrc_path = __commonJS({
|
|
|
276770
276798
|
}
|
|
276771
276799
|
});
|
|
276772
276800
|
|
|
276773
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
276801
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/compiler-helper-dependency.js
|
|
276774
276802
|
var require_compiler_helper_dependency = __commonJS({
|
|
276775
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
276803
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/compiler-helper-dependency.js"(exports2) {
|
|
276776
276804
|
"use strict";
|
|
276777
276805
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
276778
276806
|
exports2.HelperDependency = void 0;
|
|
@@ -276871,9 +276899,9 @@ var require_compiler_helper_dependency = __commonJS({
|
|
|
276871
276899
|
}
|
|
276872
276900
|
});
|
|
276873
276901
|
|
|
276874
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
276902
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/create-ts-config.js
|
|
276875
276903
|
var require_create_ts_config = __commonJS({
|
|
276876
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
276904
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/create-ts-config.js"(exports2) {
|
|
276877
276905
|
"use strict";
|
|
276878
276906
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
276879
276907
|
exports2.tsConfigBaseOptions = void 0;
|
|
@@ -276928,9 +276956,9 @@ var require_create_ts_config = __commonJS({
|
|
|
276928
276956
|
}
|
|
276929
276957
|
});
|
|
276930
276958
|
|
|
276931
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
276959
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/ast-utils.js
|
|
276932
276960
|
var require_ast_utils = __commonJS({
|
|
276933
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
276961
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/typescript/ast-utils.js"(exports2) {
|
|
276934
276962
|
"use strict";
|
|
276935
276963
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
276936
276964
|
exports2.resolveModuleByImport = resolveModuleByImport;
|
|
@@ -277168,9 +277196,9 @@ ${opts.methodHeader} {}
|
|
|
277168
277196
|
}
|
|
277169
277197
|
});
|
|
277170
277198
|
|
|
277171
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
277199
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/watch-for-single-file-changes.js
|
|
277172
277200
|
var require_watch_for_single_file_changes = __commonJS({
|
|
277173
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
277201
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/watch-for-single-file-changes.js"(exports2) {
|
|
277174
277202
|
"use strict";
|
|
277175
277203
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
277176
277204
|
exports2.watchForSingleFileChanges = watchForSingleFileChanges;
|
|
@@ -279306,9 +279334,9 @@ var require_lib3 = __commonJS({
|
|
|
279306
279334
|
}
|
|
279307
279335
|
});
|
|
279308
279336
|
|
|
279309
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
279337
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/get-main-file-dir.js
|
|
279310
279338
|
var require_get_main_file_dir = __commonJS({
|
|
279311
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
279339
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/get-main-file-dir.js"(exports2) {
|
|
279312
279340
|
"use strict";
|
|
279313
279341
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
279314
279342
|
exports2.getRelativeDirectoryToProjectRoot = getRelativeDirectoryToProjectRoot;
|
|
@@ -279322,9 +279350,9 @@ var require_get_main_file_dir = __commonJS({
|
|
|
279322
279350
|
}
|
|
279323
279351
|
});
|
|
279324
279352
|
|
|
279325
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
279353
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/package-json/update-package-json.js
|
|
279326
279354
|
var require_update_package_json = __commonJS({
|
|
279327
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
279355
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/package-json/update-package-json.js"(exports2) {
|
|
279328
279356
|
"use strict";
|
|
279329
279357
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
279330
279358
|
exports2.updatePackageJson = updatePackageJson;
|
|
@@ -279485,9 +279513,9 @@ var require_update_package_json = __commonJS({
|
|
|
279485
279513
|
}
|
|
279486
279514
|
});
|
|
279487
279515
|
|
|
279488
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
279516
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/buildable-libs-utils.js
|
|
279489
279517
|
var require_buildable_libs_utils = __commonJS({
|
|
279490
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
279518
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/buildable-libs-utils.js"(exports2) {
|
|
279491
279519
|
"use strict";
|
|
279492
279520
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
279493
279521
|
exports2.calculateProjectBuildableDependencies = calculateProjectBuildableDependencies;
|
|
@@ -279816,9 +279844,9 @@ var require_buildable_libs_utils = __commonJS({
|
|
|
279816
279844
|
}
|
|
279817
279845
|
});
|
|
279818
279846
|
|
|
279819
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
279847
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/check-dependencies.js
|
|
279820
279848
|
var require_check_dependencies = __commonJS({
|
|
279821
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
279849
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/check-dependencies.js"(exports2) {
|
|
279822
279850
|
"use strict";
|
|
279823
279851
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
279824
279852
|
exports2.checkDependencies = checkDependencies;
|
|
@@ -279844,9 +279872,9 @@ var require_check_dependencies = __commonJS({
|
|
|
279844
279872
|
}
|
|
279845
279873
|
});
|
|
279846
279874
|
|
|
279847
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
279875
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/package-json/index.js
|
|
279848
279876
|
var require_package_json = __commonJS({
|
|
279849
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
279877
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/package-json/index.js"(exports2) {
|
|
279850
279878
|
"use strict";
|
|
279851
279879
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
279852
279880
|
exports2.copyPackageJson = copyPackageJson;
|
|
@@ -287184,9 +287212,9 @@ var require_out4 = __commonJS({
|
|
|
287184
287212
|
}
|
|
287185
287213
|
});
|
|
287186
287214
|
|
|
287187
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
287215
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/assets/copy-assets-handler.js
|
|
287188
287216
|
var require_copy_assets_handler = __commonJS({
|
|
287189
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
287217
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/assets/copy-assets-handler.js"(exports2) {
|
|
287190
287218
|
"use strict";
|
|
287191
287219
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
287192
287220
|
exports2.CopyAssetsHandler = exports2.defaultFileEventHandler = void 0;
|
|
@@ -287334,9 +287362,9 @@ var require_copy_assets_handler = __commonJS({
|
|
|
287334
287362
|
}
|
|
287335
287363
|
});
|
|
287336
287364
|
|
|
287337
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
287365
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/assets/index.js
|
|
287338
287366
|
var require_assets = __commonJS({
|
|
287339
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
287367
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/assets/index.js"(exports2) {
|
|
287340
287368
|
"use strict";
|
|
287341
287369
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
287342
287370
|
exports2.copyAssets = copyAssets;
|
|
@@ -287371,9 +287399,9 @@ var require_assets = __commonJS({
|
|
|
287371
287399
|
}
|
|
287372
287400
|
});
|
|
287373
287401
|
|
|
287374
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
287402
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/package-json/create-entry-points.js
|
|
287375
287403
|
var require_create_entry_points = __commonJS({
|
|
287376
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
287404
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/package-json/create-entry-points.js"(exports2) {
|
|
287377
287405
|
"use strict";
|
|
287378
287406
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
287379
287407
|
exports2.createEntryPoints = createEntryPoints;
|
|
@@ -287394,9 +287422,9 @@ var require_create_entry_points = __commonJS({
|
|
|
287394
287422
|
}
|
|
287395
287423
|
});
|
|
287396
287424
|
|
|
287397
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
287425
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/swc/add-swc-config.js
|
|
287398
287426
|
var require_add_swc_config = __commonJS({
|
|
287399
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
287427
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/swc/add-swc-config.js"(exports2) {
|
|
287400
287428
|
"use strict";
|
|
287401
287429
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
287402
287430
|
exports2.defaultExclude = void 0;
|
|
@@ -287441,9 +287469,9 @@ var require_add_swc_config = __commonJS({
|
|
|
287441
287469
|
}
|
|
287442
287470
|
});
|
|
287443
287471
|
|
|
287444
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
287472
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/swc/add-swc-dependencies.js
|
|
287445
287473
|
var require_add_swc_dependencies = __commonJS({
|
|
287446
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
287474
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/swc/add-swc-dependencies.js"(exports2) {
|
|
287447
287475
|
"use strict";
|
|
287448
287476
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
287449
287477
|
exports2.addSwcDependencies = addSwcDependencies;
|
|
@@ -289288,9 +289316,9 @@ var require_semver2 = __commonJS({
|
|
|
289288
289316
|
}
|
|
289289
289317
|
});
|
|
289290
289318
|
|
|
289291
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
289319
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/init/init.js
|
|
289292
289320
|
var require_init = __commonJS({
|
|
289293
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
289321
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/init/init.js"(exports2) {
|
|
289294
289322
|
"use strict";
|
|
289295
289323
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
289296
289324
|
exports2.initGenerator = initGenerator;
|
|
@@ -289399,9 +289427,9 @@ var require_init = __commonJS({
|
|
|
289399
289427
|
}
|
|
289400
289428
|
});
|
|
289401
289429
|
|
|
289402
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
289430
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/setup-verdaccio/generator.js
|
|
289403
289431
|
var require_generator = __commonJS({
|
|
289404
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
289432
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/setup-verdaccio/generator.js"(exports2) {
|
|
289405
289433
|
"use strict";
|
|
289406
289434
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
289407
289435
|
exports2.setupVerdaccio = setupVerdaccio2;
|
|
@@ -289457,9 +289485,9 @@ var require_generator = __commonJS({
|
|
|
289457
289485
|
}
|
|
289458
289486
|
});
|
|
289459
289487
|
|
|
289460
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
289488
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/utils/flat-config.js
|
|
289461
289489
|
var require_flat_config = __commonJS({
|
|
289462
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
289490
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/utils/flat-config.js"(exports2) {
|
|
289463
289491
|
"use strict";
|
|
289464
289492
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
289465
289493
|
exports2.eslintFlatConfigFilenames = void 0;
|
|
@@ -492424,9 +492452,9 @@ ${e2.message}`;
|
|
|
492424
492452
|
}
|
|
492425
492453
|
});
|
|
492426
492454
|
|
|
492427
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
492455
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/utils/flat-config/path-utils.js
|
|
492428
492456
|
var require_path_utils = __commonJS({
|
|
492429
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
492457
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/utils/flat-config/path-utils.js"(exports2) {
|
|
492430
492458
|
"use strict";
|
|
492431
492459
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
492432
492460
|
exports2.updateFiles = updateFiles;
|
|
@@ -492455,9 +492483,9 @@ var require_path_utils = __commonJS({
|
|
|
492455
492483
|
}
|
|
492456
492484
|
});
|
|
492457
492485
|
|
|
492458
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
492486
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js
|
|
492459
492487
|
var require_ast_utils2 = __commonJS({
|
|
492460
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
492488
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/utils/flat-config/ast-utils.js"(exports2) {
|
|
492461
492489
|
"use strict";
|
|
492462
492490
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
492463
492491
|
exports2.removeOverridesFromLintConfig = removeOverridesFromLintConfig;
|
|
@@ -492931,9 +492959,9 @@ const compat = new FlatCompat({
|
|
|
492931
492959
|
}
|
|
492932
492960
|
});
|
|
492933
492961
|
|
|
492934
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
492962
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/utils/config-file.js
|
|
492935
492963
|
var require_config_file = __commonJS({
|
|
492936
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
492964
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/utils/config-file.js"(exports2) {
|
|
492937
492965
|
"use strict";
|
|
492938
492966
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
492939
492967
|
exports2.baseEsLintFlatConfigFile = exports2.baseEsLintConfigFile = exports2.ESLINT_CONFIG_FILENAMES = exports2.ESLINT_OLD_CONFIG_FILENAMES = exports2.ESLINT_FLAT_CONFIG_FILENAMES = void 0;
|
|
@@ -492967,7 +492995,6 @@ var require_config_file = __commonJS({
|
|
|
492967
492995
|
while (true) {
|
|
492968
492996
|
const configFilePath = getConfigFileInDirectory(currentDir, exports2.ESLINT_FLAT_CONFIG_FILENAMES);
|
|
492969
492997
|
if (configFilePath) {
|
|
492970
|
-
console.log(`Found eslint flat config file at: ${configFilePath}`);
|
|
492971
492998
|
return configFilePath;
|
|
492972
492999
|
}
|
|
492973
493000
|
if (currentDir === workspaceRoot) {
|
|
@@ -493006,9 +493033,9 @@ var require_config_file = __commonJS({
|
|
|
493006
493033
|
}
|
|
493007
493034
|
});
|
|
493008
493035
|
|
|
493009
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
493036
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/utils/eslint-file.js
|
|
493010
493037
|
var require_eslint_file = __commonJS({
|
|
493011
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
493038
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/utils/eslint-file.js"(exports2) {
|
|
493012
493039
|
"use strict";
|
|
493013
493040
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
493014
493041
|
exports2.findEslintFile = findEslintFile;
|
|
@@ -493274,9 +493301,9 @@ var require_eslint_file = __commonJS({
|
|
|
493274
493301
|
}
|
|
493275
493302
|
});
|
|
493276
493303
|
|
|
493277
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
493304
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/library/library.js
|
|
493278
493305
|
var require_library = __commonJS({
|
|
493279
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
493306
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/generators/library/library.js"(exports2) {
|
|
493280
493307
|
"use strict";
|
|
493281
493308
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
493282
493309
|
exports2.libraryGenerator = libraryGenerator;
|
|
@@ -493974,9 +494001,9 @@ var require_library = __commonJS({
|
|
|
493974
494001
|
}
|
|
493975
494002
|
});
|
|
493976
494003
|
|
|
493977
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
494004
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/is-valid-variable.js
|
|
493978
494005
|
var require_is_valid_variable = __commonJS({
|
|
493979
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
494006
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/utils/is-valid-variable.js"(exports2) {
|
|
493980
494007
|
"use strict";
|
|
493981
494008
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
493982
494009
|
exports2.isValidVariable = isValidVariable;
|
|
@@ -494009,9 +494036,9 @@ var require_is_valid_variable = __commonJS({
|
|
|
494009
494036
|
}
|
|
494010
494037
|
});
|
|
494011
494038
|
|
|
494012
|
-
// node_modules/.pnpm/@nx+js@19.5.
|
|
494039
|
+
// node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/index.js
|
|
494013
494040
|
var require_src = __commonJS({
|
|
494014
|
-
"node_modules/.pnpm/@nx+js@19.5.
|
|
494041
|
+
"node_modules/.pnpm/@nx+js@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpers@0_vpxtch7rqxwlq7dgw6f6w7tg2i/node_modules/@nx/js/src/index.js"(exports2) {
|
|
494015
494042
|
"use strict";
|
|
494016
494043
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
494017
494044
|
exports2.createPackageJson = exports2.getLockFileName = exports2.createLockFile = exports2.isValidVariable = exports2.setupVerdaccio = exports2.initGenerator = exports2.libraryGenerator = void 0;
|
|
@@ -494059,12 +494086,12 @@ var require_src = __commonJS({
|
|
|
494059
494086
|
}
|
|
494060
494087
|
});
|
|
494061
494088
|
|
|
494062
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
494089
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/package.json
|
|
494063
494090
|
var require_package3 = __commonJS({
|
|
494064
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
494091
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/package.json"(exports2, module2) {
|
|
494065
494092
|
module2.exports = {
|
|
494066
494093
|
name: "@nx/eslint",
|
|
494067
|
-
version: "19.5.
|
|
494094
|
+
version: "19.5.3",
|
|
494068
494095
|
private: false,
|
|
494069
494096
|
description: "The ESLint plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
|
|
494070
494097
|
repository: {
|
|
@@ -494099,12 +494126,12 @@ var require_package3 = __commonJS({
|
|
|
494099
494126
|
eslint: "^8.0.0 || ^9.0.0"
|
|
494100
494127
|
},
|
|
494101
494128
|
dependencies: {
|
|
494102
|
-
"@nx/devkit": "19.5.
|
|
494103
|
-
"@nx/js": "19.5.
|
|
494129
|
+
"@nx/devkit": "19.5.3",
|
|
494130
|
+
"@nx/js": "19.5.3",
|
|
494104
494131
|
semver: "^7.5.3",
|
|
494105
494132
|
tslib: "^2.3.0",
|
|
494106
494133
|
typescript: "~5.4.2",
|
|
494107
|
-
"@nx/linter": "19.5.
|
|
494134
|
+
"@nx/linter": "19.5.3"
|
|
494108
494135
|
},
|
|
494109
494136
|
peerDependenciesMeta: {
|
|
494110
494137
|
"@zkochan/js-yaml": {
|
|
@@ -494119,9 +494146,9 @@ var require_package3 = __commonJS({
|
|
|
494119
494146
|
}
|
|
494120
494147
|
});
|
|
494121
494148
|
|
|
494122
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
494149
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/utils/versions.js
|
|
494123
494150
|
var require_versions2 = __commonJS({
|
|
494124
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
494151
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/utils/versions.js"(exports2) {
|
|
494125
494152
|
"use strict";
|
|
494126
494153
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
494127
494154
|
exports2.typescriptESLintVersion = exports2.eslintConfigPrettierVersion = exports2.eslintrcVersion = exports2.eslintVersion = exports2.nxVersion = void 0;
|
|
@@ -578425,9 +578452,9 @@ var require_unsupported_api = __commonJS({
|
|
|
578425
578452
|
}
|
|
578426
578453
|
});
|
|
578427
578454
|
|
|
578428
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
578455
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/utils/resolve-eslint-class.js
|
|
578429
578456
|
var require_resolve_eslint_class = __commonJS({
|
|
578430
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
578457
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/utils/resolve-eslint-class.js"(exports2) {
|
|
578431
578458
|
"use strict";
|
|
578432
578459
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
578433
578460
|
exports2.resolveESLintClass = resolveESLintClass;
|
|
@@ -578449,9 +578476,9 @@ var require_resolve_eslint_class = __commonJS({
|
|
|
578449
578476
|
}
|
|
578450
578477
|
});
|
|
578451
578478
|
|
|
578452
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
578479
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/plugins/plugin.js
|
|
578453
578480
|
var require_plugin = __commonJS({
|
|
578454
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
578481
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/plugins/plugin.js"(exports2) {
|
|
578455
578482
|
"use strict";
|
|
578456
578483
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
578457
578484
|
exports2.createNodes = exports2.createNodesV2 = void 0;
|
|
@@ -578755,9 +578782,9 @@ var require_plugin = __commonJS({
|
|
|
578755
578782
|
}
|
|
578756
578783
|
});
|
|
578757
578784
|
|
|
578758
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
578785
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/utils/plugin.js
|
|
578759
578786
|
var require_plugin2 = __commonJS({
|
|
578760
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
578787
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/utils/plugin.js"(exports2) {
|
|
578761
578788
|
"use strict";
|
|
578762
578789
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
578763
578790
|
exports2.hasEslintPlugin = hasEslintPlugin;
|
|
@@ -578769,9 +578796,9 @@ var require_plugin2 = __commonJS({
|
|
|
578769
578796
|
}
|
|
578770
578797
|
});
|
|
578771
578798
|
|
|
578772
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
578799
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/init/init.js
|
|
578773
578800
|
var require_init2 = __commonJS({
|
|
578774
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
578801
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/init/init.js"(exports2) {
|
|
578775
578802
|
"use strict";
|
|
578776
578803
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
578777
578804
|
exports2.initEsLint = initEsLint;
|
|
@@ -578855,9 +578882,9 @@ var require_init2 = __commonJS({
|
|
|
578855
578882
|
}
|
|
578856
578883
|
});
|
|
578857
578884
|
|
|
578858
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
578885
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js
|
|
578859
578886
|
var require_global_eslint_config = __commonJS({
|
|
578860
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
578887
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/init/global-eslint-config.js"(exports2) {
|
|
578861
578888
|
"use strict";
|
|
578862
578889
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
578863
578890
|
exports2.getGlobalFlatEslintConfiguration = exports2.getGlobalEsLintConfiguration = exports2.javaScriptOverride = exports2.typeScriptOverride = void 0;
|
|
@@ -578946,9 +578973,9 @@ var require_global_eslint_config = __commonJS({
|
|
|
578946
578973
|
}
|
|
578947
578974
|
});
|
|
578948
578975
|
|
|
578949
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
578976
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/init/init-migration.js
|
|
578950
578977
|
var require_init_migration = __commonJS({
|
|
578951
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
578978
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/init/init-migration.js"(exports2) {
|
|
578952
578979
|
"use strict";
|
|
578953
578980
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
578954
578981
|
exports2.migrateConfigToMonorepoStyle = migrateConfigToMonorepoStyle;
|
|
@@ -579066,9 +579093,9 @@ var require_init_migration = __commonJS({
|
|
|
579066
579093
|
}
|
|
579067
579094
|
});
|
|
579068
579095
|
|
|
579069
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
579096
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/lint-project/setup-root-eslint.js
|
|
579070
579097
|
var require_setup_root_eslint = __commonJS({
|
|
579071
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
579098
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/lint-project/setup-root-eslint.js"(exports2) {
|
|
579072
579099
|
"use strict";
|
|
579073
579100
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
579074
579101
|
exports2.setupRootEsLint = setupRootEsLint;
|
|
@@ -579105,9 +579132,9 @@ node_modules
|
|
|
579105
579132
|
}
|
|
579106
579133
|
});
|
|
579107
579134
|
|
|
579108
|
-
// node_modules/.pnpm/@nx+eslint@19.5.
|
|
579135
|
+
// node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js
|
|
579109
579136
|
var require_lint_project = __commonJS({
|
|
579110
|
-
"node_modules/.pnpm/@nx+eslint@19.5.
|
|
579137
|
+
"node_modules/.pnpm/@nx+eslint@19.5.3_@babel+traverse@7.24.7_@swc-node+register@1.9.2_@swc+core@1.5.29_@swc+helpe_k6b6igv6dbrlopkr3eqoyuilvi/node_modules/@nx/eslint/src/generators/lint-project/lint-project.js"(exports2) {
|
|
579111
579138
|
"use strict";
|
|
579112
579139
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
579113
579140
|
exports2.lintProjectGenerator = lintProjectGenerator;
|