@storm-software/workspace-tools 1.248.4 → 1.248.5
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 +6 -0
- package/README.md +1 -1
- package/config/base.json +1 -24
- package/dist/{chunk-WK734NEX.mjs → chunk-KESMKK3B.mjs} +55 -40
- package/dist/{chunk-JIQDXVMU.js → chunk-XWVMPARO.js} +55 -40
- package/dist/executors.js +4 -4
- package/dist/executors.mjs +5 -5
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +3 -3
- package/dist/index.js +6 -6
- package/dist/index.mjs +8 -8
- package/dist/src/plugins/typescript/index.js +2 -2
- package/dist/src/plugins/typescript/index.mjs +1 -1
- package/dist/src/plugins/typescript/project-config.js +2 -2
- package/dist/src/plugins/typescript/project-config.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/config/base.json
CHANGED
|
@@ -307,16 +307,6 @@
|
|
|
307
307
|
]
|
|
308
308
|
},
|
|
309
309
|
"targetDefaults": {
|
|
310
|
-
"lint-ls": {
|
|
311
|
-
"outputs": ["{projectRoot}/**/*"],
|
|
312
|
-
"inputs": ["linting", "default", "^production"],
|
|
313
|
-
"dependsOn": ["^lint-ls"],
|
|
314
|
-
"executor": "nx:run-commands",
|
|
315
|
-
"options": {
|
|
316
|
-
"command": "pnpm exec ls-lint --config=\"@storm-software/linting-tools/ls-lint/config.yml\" --workdir=\"{projectRoot}\"",
|
|
317
|
-
"color": true
|
|
318
|
-
}
|
|
319
|
-
},
|
|
320
310
|
"lint-markdown": {
|
|
321
311
|
"outputs": ["{projectRoot}/**/*.md", "{projectRoot}/**/*.mdx"],
|
|
322
312
|
"inputs": ["{projectRoot}/**/*.md", "{projectRoot}/**/*.mdx"],
|
|
@@ -330,13 +320,7 @@
|
|
|
330
320
|
"lint": {
|
|
331
321
|
"outputs": ["{projectRoot}"],
|
|
332
322
|
"inputs": ["linting", "default", "^production"],
|
|
333
|
-
"dependsOn": [
|
|
334
|
-
"lint-ls",
|
|
335
|
-
"lint-eslint",
|
|
336
|
-
"lint-markdown",
|
|
337
|
-
"lint-docs",
|
|
338
|
-
"^lint"
|
|
339
|
-
],
|
|
323
|
+
"dependsOn": ["lint-markdown", "lint-docs", "^lint"],
|
|
340
324
|
"executor": "nx:run-commands",
|
|
341
325
|
"options": {
|
|
342
326
|
"command": "echo Linted the project files in \"{projectRoot}\" "
|
|
@@ -475,13 +459,6 @@
|
|
|
475
459
|
}
|
|
476
460
|
},
|
|
477
461
|
"plugins": [
|
|
478
|
-
{
|
|
479
|
-
"plugin": "@nx/eslint/plugin",
|
|
480
|
-
"options": {
|
|
481
|
-
"targetName": "lint-eslint",
|
|
482
|
-
"useFlatConfig": true
|
|
483
|
-
}
|
|
484
|
-
},
|
|
485
462
|
"@storm-software/workspace-tools/plugins/typescript",
|
|
486
463
|
"@storm-software/workspace-tools/plugins/typescript/tsup",
|
|
487
464
|
"@storm-software/workspace-tools/plugins/typescript/untyped"
|
|
@@ -38,24 +38,6 @@ var createNodes = [
|
|
|
38
38
|
}
|
|
39
39
|
const nxJson = readNxJson(ctx.workspaceRoot);
|
|
40
40
|
const targets = readTargetsFromPackageJson(packageJson, nxJson);
|
|
41
|
-
if (!targets["lint-ls"]) {
|
|
42
|
-
targets["lint-ls"] = {
|
|
43
|
-
cache: true,
|
|
44
|
-
inputs: [
|
|
45
|
-
"linting",
|
|
46
|
-
"typescript",
|
|
47
|
-
"^production"
|
|
48
|
-
],
|
|
49
|
-
dependsOn: [
|
|
50
|
-
"^lint-ls"
|
|
51
|
-
],
|
|
52
|
-
executor: "nx:run-commands",
|
|
53
|
-
options: {
|
|
54
|
-
command: 'pnpm exec ls-lint --config="@storm-software/linting-tools/ls-lint/config.yml" --workdir="{projectRoot}"',
|
|
55
|
-
color: true
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
41
|
if (!targets["lint-markdown"]) {
|
|
60
42
|
targets["lint-markdown"] = {
|
|
61
43
|
cache: true,
|
|
@@ -64,6 +46,7 @@ var createNodes = [
|
|
|
64
46
|
"{projectRoot}/**/*.mdx"
|
|
65
47
|
],
|
|
66
48
|
inputs: [
|
|
49
|
+
"linting",
|
|
67
50
|
"{projectRoot}/**/*.md",
|
|
68
51
|
"{projectRoot}/**/*.mdx"
|
|
69
52
|
],
|
|
@@ -78,29 +61,33 @@ var createNodes = [
|
|
|
78
61
|
};
|
|
79
62
|
}
|
|
80
63
|
if (!targets.lint) {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
],
|
|
88
|
-
dependsOn: [
|
|
89
|
-
"lint-ls",
|
|
90
|
-
"lint-sherif",
|
|
91
|
-
"lint-knip",
|
|
92
|
-
"lint-docs",
|
|
93
|
-
"^lint"
|
|
94
|
-
],
|
|
95
|
-
executor: "@nx/eslint:lint",
|
|
96
|
-
options: {
|
|
97
|
-
format: "stylish",
|
|
98
|
-
fix: true,
|
|
64
|
+
let eslintConfig = checkEslintConfigAtPath(project.root);
|
|
65
|
+
if (!eslintConfig) {
|
|
66
|
+
eslintConfig = checkEslintConfigAtPath(ctx.workspaceRoot);
|
|
67
|
+
}
|
|
68
|
+
if (eslintConfig) {
|
|
69
|
+
targets.lint = {
|
|
99
70
|
cache: true,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
71
|
+
inputs: [
|
|
72
|
+
"linting",
|
|
73
|
+
"typescript",
|
|
74
|
+
"^production"
|
|
75
|
+
],
|
|
76
|
+
dependsOn: [
|
|
77
|
+
"lint-markdown",
|
|
78
|
+
"^lint"
|
|
79
|
+
],
|
|
80
|
+
executor: "@nx/eslint:lint",
|
|
81
|
+
options: {
|
|
82
|
+
format: "stylish",
|
|
83
|
+
fix: true,
|
|
84
|
+
errorOnUnmatchedPattern: false,
|
|
85
|
+
cache: true,
|
|
86
|
+
cacheLocation: "{workspaceRoot}/node_modules/.cache/eslint",
|
|
87
|
+
eslintConfig
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
}
|
|
104
91
|
}
|
|
105
92
|
if (!targets["format-readme"]) {
|
|
106
93
|
targets["format-readme"] = {
|
|
@@ -375,6 +362,34 @@ async function createTsconfig(projectJsonPath, workspaceRoot) {
|
|
|
375
362
|
}
|
|
376
363
|
}
|
|
377
364
|
__name(createTsconfig, "createTsconfig");
|
|
365
|
+
function checkEslintConfigAtPath(directory) {
|
|
366
|
+
const hasEslintConfigFile = /* @__PURE__ */ __name((fileName) => {
|
|
367
|
+
return existsSync(join(directory, fileName));
|
|
368
|
+
}, "hasEslintConfigFile");
|
|
369
|
+
if (hasEslintConfigFile(".eslintrc.js")) {
|
|
370
|
+
return ".eslintrc.js";
|
|
371
|
+
} else if (hasEslintConfigFile(".eslintrc.cjs")) {
|
|
372
|
+
return ".eslintrc.cjs";
|
|
373
|
+
} else if (hasEslintConfigFile(".eslintrc.yaml")) {
|
|
374
|
+
return ".eslintrc.yaml";
|
|
375
|
+
} else if (hasEslintConfigFile(".eslintrc.yml")) {
|
|
376
|
+
return ".eslintrc.yml";
|
|
377
|
+
} else if (hasEslintConfigFile(".eslintrc.json")) {
|
|
378
|
+
return ".eslintrc.json";
|
|
379
|
+
} else if (hasEslintConfigFile(".eslintrc")) {
|
|
380
|
+
return ".eslintrc";
|
|
381
|
+
} else if (hasEslintConfigFile("eslint.config.js")) {
|
|
382
|
+
return "eslint.config.js";
|
|
383
|
+
} else if (hasEslintConfigFile("eslint.config.cjs")) {
|
|
384
|
+
return "eslint.config.cjs";
|
|
385
|
+
} else if (hasEslintConfigFile("eslint.config.mjs")) {
|
|
386
|
+
return "eslint.config.mjs";
|
|
387
|
+
} else if (hasEslintConfigFile("eslint.config.ts")) {
|
|
388
|
+
return "eslint.config.ts";
|
|
389
|
+
}
|
|
390
|
+
return null;
|
|
391
|
+
}
|
|
392
|
+
__name(checkEslintConfigAtPath, "checkEslintConfigAtPath");
|
|
378
393
|
|
|
379
394
|
export {
|
|
380
395
|
name,
|
|
@@ -38,24 +38,6 @@ var createNodes = [
|
|
|
38
38
|
}
|
|
39
39
|
const nxJson = _nxjsonjs.readNxJson.call(void 0, ctx.workspaceRoot);
|
|
40
40
|
const targets = _packagejson.readTargetsFromPackageJson.call(void 0, packageJson, nxJson);
|
|
41
|
-
if (!targets["lint-ls"]) {
|
|
42
|
-
targets["lint-ls"] = {
|
|
43
|
-
cache: true,
|
|
44
|
-
inputs: [
|
|
45
|
-
"linting",
|
|
46
|
-
"typescript",
|
|
47
|
-
"^production"
|
|
48
|
-
],
|
|
49
|
-
dependsOn: [
|
|
50
|
-
"^lint-ls"
|
|
51
|
-
],
|
|
52
|
-
executor: "nx:run-commands",
|
|
53
|
-
options: {
|
|
54
|
-
command: 'pnpm exec ls-lint --config="@storm-software/linting-tools/ls-lint/config.yml" --workdir="{projectRoot}"',
|
|
55
|
-
color: true
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
41
|
if (!targets["lint-markdown"]) {
|
|
60
42
|
targets["lint-markdown"] = {
|
|
61
43
|
cache: true,
|
|
@@ -64,6 +46,7 @@ var createNodes = [
|
|
|
64
46
|
"{projectRoot}/**/*.mdx"
|
|
65
47
|
],
|
|
66
48
|
inputs: [
|
|
49
|
+
"linting",
|
|
67
50
|
"{projectRoot}/**/*.md",
|
|
68
51
|
"{projectRoot}/**/*.mdx"
|
|
69
52
|
],
|
|
@@ -78,29 +61,33 @@ var createNodes = [
|
|
|
78
61
|
};
|
|
79
62
|
}
|
|
80
63
|
if (!targets.lint) {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
],
|
|
88
|
-
dependsOn: [
|
|
89
|
-
"lint-ls",
|
|
90
|
-
"lint-sherif",
|
|
91
|
-
"lint-knip",
|
|
92
|
-
"lint-docs",
|
|
93
|
-
"^lint"
|
|
94
|
-
],
|
|
95
|
-
executor: "@nx/eslint:lint",
|
|
96
|
-
options: {
|
|
97
|
-
format: "stylish",
|
|
98
|
-
fix: true,
|
|
64
|
+
let eslintConfig = checkEslintConfigAtPath(project.root);
|
|
65
|
+
if (!eslintConfig) {
|
|
66
|
+
eslintConfig = checkEslintConfigAtPath(ctx.workspaceRoot);
|
|
67
|
+
}
|
|
68
|
+
if (eslintConfig) {
|
|
69
|
+
targets.lint = {
|
|
99
70
|
cache: true,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
71
|
+
inputs: [
|
|
72
|
+
"linting",
|
|
73
|
+
"typescript",
|
|
74
|
+
"^production"
|
|
75
|
+
],
|
|
76
|
+
dependsOn: [
|
|
77
|
+
"lint-markdown",
|
|
78
|
+
"^lint"
|
|
79
|
+
],
|
|
80
|
+
executor: "@nx/eslint:lint",
|
|
81
|
+
options: {
|
|
82
|
+
format: "stylish",
|
|
83
|
+
fix: true,
|
|
84
|
+
errorOnUnmatchedPattern: false,
|
|
85
|
+
cache: true,
|
|
86
|
+
cacheLocation: "{workspaceRoot}/node_modules/.cache/eslint",
|
|
87
|
+
eslintConfig
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
}
|
|
104
91
|
}
|
|
105
92
|
if (!targets["format-readme"]) {
|
|
106
93
|
targets["format-readme"] = {
|
|
@@ -375,6 +362,34 @@ async function createTsconfig(projectJsonPath, workspaceRoot) {
|
|
|
375
362
|
}
|
|
376
363
|
}
|
|
377
364
|
_chunk3GQAWCBQjs.__name.call(void 0, createTsconfig, "createTsconfig");
|
|
365
|
+
function checkEslintConfigAtPath(directory) {
|
|
366
|
+
const hasEslintConfigFile = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (fileName) => {
|
|
367
|
+
return _fs.existsSync.call(void 0, _path.join.call(void 0, directory, fileName));
|
|
368
|
+
}, "hasEslintConfigFile");
|
|
369
|
+
if (hasEslintConfigFile(".eslintrc.js")) {
|
|
370
|
+
return ".eslintrc.js";
|
|
371
|
+
} else if (hasEslintConfigFile(".eslintrc.cjs")) {
|
|
372
|
+
return ".eslintrc.cjs";
|
|
373
|
+
} else if (hasEslintConfigFile(".eslintrc.yaml")) {
|
|
374
|
+
return ".eslintrc.yaml";
|
|
375
|
+
} else if (hasEslintConfigFile(".eslintrc.yml")) {
|
|
376
|
+
return ".eslintrc.yml";
|
|
377
|
+
} else if (hasEslintConfigFile(".eslintrc.json")) {
|
|
378
|
+
return ".eslintrc.json";
|
|
379
|
+
} else if (hasEslintConfigFile(".eslintrc")) {
|
|
380
|
+
return ".eslintrc";
|
|
381
|
+
} else if (hasEslintConfigFile("eslint.config.js")) {
|
|
382
|
+
return "eslint.config.js";
|
|
383
|
+
} else if (hasEslintConfigFile("eslint.config.cjs")) {
|
|
384
|
+
return "eslint.config.cjs";
|
|
385
|
+
} else if (hasEslintConfigFile("eslint.config.mjs")) {
|
|
386
|
+
return "eslint.config.mjs";
|
|
387
|
+
} else if (hasEslintConfigFile("eslint.config.ts")) {
|
|
388
|
+
return "eslint.config.ts";
|
|
389
|
+
}
|
|
390
|
+
return null;
|
|
391
|
+
}
|
|
392
|
+
_chunk3GQAWCBQjs.__name.call(void 0, checkEslintConfigAtPath, "checkEslintConfigAtPath");
|
|
378
393
|
|
|
379
394
|
|
|
380
395
|
|
package/dist/executors.js
CHANGED
|
@@ -26,16 +26,16 @@ var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
|
|
|
26
26
|
require('./chunk-R2NBU264.js');
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
30
|
-
|
|
31
|
-
|
|
32
29
|
var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
|
|
33
30
|
|
|
34
31
|
|
|
35
|
-
var
|
|
32
|
+
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
36
33
|
|
|
37
34
|
|
|
38
35
|
var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
|
|
39
39
|
require('./chunk-CUPARBOS.js');
|
|
40
40
|
require('./chunk-ULBTYC2B.js');
|
|
41
41
|
require('./chunk-ZMFVKBRM.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -24,18 +24,18 @@ import {
|
|
|
24
24
|
esbuildExecutorFn
|
|
25
25
|
} from "./chunk-OA6GD45B.mjs";
|
|
26
26
|
import "./chunk-N2P34ZQV.mjs";
|
|
27
|
-
import {
|
|
28
|
-
cargoBuildExecutor
|
|
29
|
-
} from "./chunk-RSFH5OLL.mjs";
|
|
30
27
|
import {
|
|
31
28
|
cargoCheckExecutor
|
|
32
29
|
} from "./chunk-P4ZEGEQX.mjs";
|
|
33
30
|
import {
|
|
34
|
-
|
|
35
|
-
} from "./chunk-
|
|
31
|
+
cargoBuildExecutor
|
|
32
|
+
} from "./chunk-RSFH5OLL.mjs";
|
|
36
33
|
import {
|
|
37
34
|
cargoDocExecutor
|
|
38
35
|
} from "./chunk-7AXJ27FU.mjs";
|
|
36
|
+
import {
|
|
37
|
+
cargoClippyExecutor
|
|
38
|
+
} from "./chunk-57LRWY5U.mjs";
|
|
39
39
|
import "./chunk-JB4KCMSB.mjs";
|
|
40
40
|
import "./chunk-XK3FSWMA.mjs";
|
|
41
41
|
import "./chunk-EIM3O6HY.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -7,10 +7,10 @@ var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
|
|
|
7
7
|
var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
|
package/dist/generators.mjs
CHANGED
|
@@ -5,12 +5,12 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
nodeLibraryGeneratorFn
|
|
7
7
|
} from "./chunk-Q6OBRMZG.mjs";
|
|
8
|
-
import {
|
|
9
|
-
releaseVersionGeneratorFn
|
|
10
|
-
} from "./chunk-TNAEFYVH.mjs";
|
|
11
8
|
import {
|
|
12
9
|
presetGeneratorFn
|
|
13
10
|
} from "./chunk-QDZUYDVM.mjs";
|
|
11
|
+
import {
|
|
12
|
+
releaseVersionGeneratorFn
|
|
13
|
+
} from "./chunk-TNAEFYVH.mjs";
|
|
14
14
|
import {
|
|
15
15
|
browserLibraryGeneratorFn
|
|
16
16
|
} from "./chunk-7GW75RON.mjs";
|
package/dist/index.js
CHANGED
|
@@ -73,18 +73,18 @@ var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
|
|
|
73
73
|
require('./chunk-R2NBU264.js');
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
77
|
-
|
|
78
|
-
|
|
79
76
|
var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
|
|
80
77
|
|
|
81
78
|
|
|
82
|
-
var
|
|
79
|
+
var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
|
|
83
80
|
|
|
84
81
|
|
|
85
82
|
var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
|
|
86
83
|
|
|
87
84
|
|
|
85
|
+
var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
|
|
86
|
+
|
|
87
|
+
|
|
88
88
|
var _chunkCUPARBOSjs = require('./chunk-CUPARBOS.js');
|
|
89
89
|
|
|
90
90
|
|
|
@@ -106,10 +106,10 @@ var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
|
|
|
106
106
|
var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
var
|
|
109
|
+
var _chunkDCJXS5XIjs = require('./chunk-DCJXS5XI.js');
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
var
|
|
112
|
+
var _chunkYDV7OQMNjs = require('./chunk-YDV7OQMN.js');
|
|
113
113
|
|
|
114
114
|
|
|
115
115
|
var _chunkQKALACBCjs = require('./chunk-QKALACBC.js');
|
package/dist/index.mjs
CHANGED
|
@@ -71,18 +71,18 @@ import {
|
|
|
71
71
|
esbuildExecutorFn
|
|
72
72
|
} from "./chunk-OA6GD45B.mjs";
|
|
73
73
|
import "./chunk-N2P34ZQV.mjs";
|
|
74
|
-
import {
|
|
75
|
-
cargoBuildExecutor
|
|
76
|
-
} from "./chunk-RSFH5OLL.mjs";
|
|
77
74
|
import {
|
|
78
75
|
cargoCheckExecutor
|
|
79
76
|
} from "./chunk-P4ZEGEQX.mjs";
|
|
80
77
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
78
|
+
cargoBuildExecutor
|
|
79
|
+
} from "./chunk-RSFH5OLL.mjs";
|
|
83
80
|
import {
|
|
84
81
|
cargoDocExecutor
|
|
85
82
|
} from "./chunk-7AXJ27FU.mjs";
|
|
83
|
+
import {
|
|
84
|
+
cargoClippyExecutor
|
|
85
|
+
} from "./chunk-57LRWY5U.mjs";
|
|
86
86
|
import {
|
|
87
87
|
pnpmCatalogUpdate
|
|
88
88
|
} from "./chunk-JB4KCMSB.mjs";
|
|
@@ -104,12 +104,12 @@ import {
|
|
|
104
104
|
import {
|
|
105
105
|
nodeLibraryGeneratorFn
|
|
106
106
|
} from "./chunk-Q6OBRMZG.mjs";
|
|
107
|
-
import {
|
|
108
|
-
releaseVersionGeneratorFn
|
|
109
|
-
} from "./chunk-TNAEFYVH.mjs";
|
|
110
107
|
import {
|
|
111
108
|
presetGeneratorFn
|
|
112
109
|
} from "./chunk-QDZUYDVM.mjs";
|
|
110
|
+
import {
|
|
111
|
+
releaseVersionGeneratorFn
|
|
112
|
+
} from "./chunk-TNAEFYVH.mjs";
|
|
113
113
|
import {
|
|
114
114
|
browserLibraryGeneratorFn
|
|
115
115
|
} from "./chunk-7GW75RON.mjs";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkXWVMPAROjs = require('../../../chunk-XWVMPARO.js');
|
|
5
5
|
require('../../../chunk-UF6KFXG5.js');
|
|
6
6
|
require('../../../chunk-7YRW5HNX.js');
|
|
7
7
|
require('../../../chunk-3GQAWCBQ.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.createNodes =
|
|
11
|
+
exports.createNodes = _chunkXWVMPAROjs.createNodes; exports.name = _chunkXWVMPAROjs.name;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkXWVMPAROjs = require('../../../chunk-XWVMPARO.js');
|
|
5
5
|
require('../../../chunk-UF6KFXG5.js');
|
|
6
6
|
require('../../../chunk-7YRW5HNX.js');
|
|
7
7
|
require('../../../chunk-3GQAWCBQ.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.createNodes =
|
|
11
|
+
exports.createNodes = _chunkXWVMPAROjs.createNodes; exports.name = _chunkXWVMPAROjs.name;
|
package/package.json
CHANGED