@storm-software/workspace-tools 1.82.0 → 1.82.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +13 -10
- package/index.js +3342 -4708
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +3326 -4688
- package/src/executors/rolldown/executor.js +3148 -4524
- package/src/executors/tsup/executor.js +3148 -4524
- package/src/executors/tsup-browser/executor.js +3148 -4524
- package/src/executors/tsup-neutral/executor.js +3148 -4524
- package/src/executors/tsup-node/executor.js +3148 -4524
- package/src/executors/typia/executor.js +3163 -4539
- package/src/executors/unbuild/executor.js +3148 -4524
- package/src/generators/browser-library/generator.js +3326 -4688
- package/src/generators/config-schema/generator.js +3148 -4524
- package/src/generators/neutral-library/generator.js +3326 -4688
- package/src/generators/node-library/generator.js +3326 -4688
- package/src/generators/preset/files/.eslintignore +6 -2
- package/src/generators/preset/files/.eslintrc.base.json +7 -2
- package/src/generators/preset/files/.prettierignore +30 -0
- package/src/generators/preset/files/.prettierrc.cjs +9 -0
- package/src/generators/preset/files/storm.json.template +42 -0
- package/src/generators/preset/generator.js +3153 -4533
- package/src/generators/release-version/generator.js +3159 -4535
- package/src/utils/index.js +3166 -4542
- package/src/generators/preset/files/biome.json +0 -4
- package/src/generators/preset/files/storm.config.js.template +0 -29
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"root": true,
|
|
3
|
-
"ignorePatterns": ["**/*"
|
|
4
|
-
"
|
|
3
|
+
"ignorePatterns": ["**/*"],
|
|
4
|
+
"parser": "@typescript-eslint/parser",
|
|
5
|
+
"env": {
|
|
6
|
+
"node": true
|
|
7
|
+
},
|
|
8
|
+
"plugins": ["@storm-software"],
|
|
9
|
+
"extends": ["plugin:@storm-software/recommended"],
|
|
5
10
|
"overrides": [
|
|
6
11
|
{
|
|
7
12
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.alexignore
|
|
2
|
+
.prettierignore
|
|
3
|
+
npm-lock.json
|
|
4
|
+
pnpm-lock.json
|
|
5
|
+
yarn.lock.json
|
|
6
|
+
npm-lock.yml
|
|
7
|
+
pnpm-lock.yml
|
|
8
|
+
yarn.lock.yml
|
|
9
|
+
npm-lock.yaml
|
|
10
|
+
pnpm-lock.yaml
|
|
11
|
+
yarn.lock.yaml
|
|
12
|
+
bun.lockb
|
|
13
|
+
|
|
14
|
+
**/.git/**
|
|
15
|
+
**/.docusaurus/**
|
|
16
|
+
**/dist/**
|
|
17
|
+
**/dotnet/**
|
|
18
|
+
**/node_modules/**
|
|
19
|
+
**/.next/**
|
|
20
|
+
**/tools/docker/**
|
|
21
|
+
**/__snapshots__/**
|
|
22
|
+
**/catalog-package/**
|
|
23
|
+
**/*.hbs
|
|
24
|
+
**/CODEOWNERS
|
|
25
|
+
**/CODE_OF_CONDUCT.md
|
|
26
|
+
**/CONTRIBUTING.md
|
|
27
|
+
**/LICENSE
|
|
28
|
+
**/LICENSE.md
|
|
29
|
+
**/LICENSE.txt
|
|
30
|
+
**/src/generators/**/files/**/*
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "<%= name %>",
|
|
3
|
+
"namespace": "<%= namespace %>",
|
|
4
|
+
"repository": "https://github.com/<%= organization %>/<%= name %>",
|
|
5
|
+
"organization": "<%= organization %>",
|
|
6
|
+
"ci": true,
|
|
7
|
+
"owner": "<%= name %>",
|
|
8
|
+
"timezone": "America/New_York",
|
|
9
|
+
"locale": "en-US",
|
|
10
|
+
"logLevel": "debug",
|
|
11
|
+
"externalPackagePatterns": ["@storm-software/"],
|
|
12
|
+
"colors": {
|
|
13
|
+
"light": {
|
|
14
|
+
"background": "#f4f4f5",
|
|
15
|
+
"foreground": "#1d232a",
|
|
16
|
+
"brand": "#1fb2a6",
|
|
17
|
+
"help": "#8250df",
|
|
18
|
+
"success": "#087f5b",
|
|
19
|
+
"info": "#0550ae",
|
|
20
|
+
"warning": "#e3b341",
|
|
21
|
+
"error": "#a40e26"
|
|
22
|
+
},
|
|
23
|
+
"dark": {
|
|
24
|
+
"background": "#22272E",
|
|
25
|
+
"foreground": "#fcfcf5",
|
|
26
|
+
"brand": "#1fb2a6",
|
|
27
|
+
"help": "#8256D0",
|
|
28
|
+
"success": "#087f5b",
|
|
29
|
+
"info": "#316DCA",
|
|
30
|
+
"warning": "#F3D371",
|
|
31
|
+
"error": "#d1242f"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"extensions": {
|
|
35
|
+
"telemetry": {
|
|
36
|
+
"fileName": "storm",
|
|
37
|
+
"fileExtension": "log",
|
|
38
|
+
"path": "tmp/storm/logs",
|
|
39
|
+
"stacktrace": true
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|