@storm-software/workspace-tools 1.1.0 → 1.3.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 +88 -0
- package/README.md +2 -2
- package/config/nx.json +22 -53
- package/package.json +1 -1
- package/src/generators/init/init.js +1 -16
- package/src/generators/init/init.js.map +1 -1
- package/src/generators/preset/files/.all-contributorsrc.template +18 -4
- package/src/generators/preset/files/.env.template +11 -32
- package/src/generators/preset/files/.gitattributes +9 -0
- package/src/generators/preset/files/.github/CONTRIBUTING.md.template +1 -1
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +38 -7
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/documentation.yml.template +12 -12
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/feature-request.yml.template +4 -7
- package/src/generators/preset/files/.github/PULL_REQUEST_TEMPLATE.md.template +1 -1
- package/src/generators/preset/files/.github/actions/node/action.yaml +11 -12
- package/src/generators/preset/files/.github/codecov.yml +1 -1
- package/src/generators/preset/files/.github/renovate.json.template +3 -7
- package/src/generators/preset/files/.github/workflows/ci.yml.template +91 -0
- package/src/generators/preset/files/.github/workflows/codeql.yml +4 -1
- package/src/generators/preset/files/.github/workflows/git-guardian.yml +5 -3
- package/src/generators/preset/files/.github/workflows/labels.yml +6 -5
- package/src/generators/preset/files/.github/workflows/lock.yml +1 -4
- package/src/generators/preset/files/.github/workflows/nextjs-bundle-analysis.yml +12 -28
- package/src/generators/preset/files/.husky/post-checkout +1 -2
- package/src/generators/preset/files/.husky/post-commit +4 -0
- package/src/generators/preset/files/.husky/post-merge +1 -2
- package/src/generators/preset/files/.husky/pre-commit +1 -2
- package/src/generators/preset/files/.husky/pre-push +3 -2
- package/src/generators/preset/files/.markdownlint.json +4 -1
- package/src/generators/preset/files/.verdaccio/config.yml.template +1 -1
- package/src/generators/preset/files/.vscode/extensions.json +1 -1
- package/src/generators/preset/files/.vscode/launch.json +3 -3
- package/src/generators/preset/files/README.md.template +31 -30
- package/src/generators/preset/files/eslint.config.js +58 -0
- package/src/generators/preset/files/nx.json +98 -0
- package/src/generators/preset/files/pnpm-workspace.yaml +2 -0
- package/src/generators/preset/files/socket.yaml +20 -0
- package/src/generators/preset/files/tsconfig.base.json.template +1 -1
- package/src/generators/preset/generator.js +140 -65
- package/src/generators/preset/generator.js.map +1 -1
- package/src/generators/preset/schema.d.ts +8 -0
- package/src/generators/preset/schema.json +86 -2
- package/src/utils/versions.d.ts +4 -1
- package/src/generators/preset/files/.alexignore +0 -4
- package/src/generators/preset/files/.alexrc +0 -39
- package/src/generators/preset/files/.eslintrc.json +0 -123
- package/src/generators/preset/files/.github/workflows/ci.yml +0 -131
- package/src/generators/preset/files/.github/workflows/documentation.yml.template +0 -85
- package/src/generators/preset/files/.husky/commit-msg +0 -4
- package/src/generators/preset/files/commitlint.config.d.ts +0 -2
- package/src/generators/preset/files/commitlint.config.js +0 -3
- package/src/generators/preset/files/commitlint.config.js.map +0 -1
- package/src/generators/preset/files/src/index.ts.template +0 -1
- /package/src/generators/preset/files/{.log4brains.yml → .log4brains.yml.template} +0 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
3
|
+
"extends": "@storm-software/workspace-tools/config/nx.json",
|
|
4
|
+
"affected": {
|
|
5
|
+
"defaultBase": "main"
|
|
6
|
+
},
|
|
7
|
+
"workspaceLayout": {
|
|
8
|
+
"projectNameAndRootFormat": "as-provided"
|
|
9
|
+
},
|
|
10
|
+
"tasksRunnerOptions": {
|
|
11
|
+
"default": {
|
|
12
|
+
"runner": "nx/tasks-runners/default",
|
|
13
|
+
"options": {
|
|
14
|
+
"cacheableOperations": ["build", "lint", "format", "test", "e2e"],
|
|
15
|
+
"parallel": 5
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"targetDefaults": {
|
|
20
|
+
"build": {
|
|
21
|
+
"cache": true,
|
|
22
|
+
"dependsOn": ["^build"],
|
|
23
|
+
"inputs": ["production", "^production"],
|
|
24
|
+
"outputs": ["{options.outputPath}"],
|
|
25
|
+
"options": {
|
|
26
|
+
"outputPath": "dist/{projectRoot}",
|
|
27
|
+
"tsConfig": "{projectRoot}/tsconfig.lib.json",
|
|
28
|
+
"assets": [
|
|
29
|
+
{
|
|
30
|
+
"glob": "*.md",
|
|
31
|
+
"input": "{projectRoot}",
|
|
32
|
+
"output": "."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"glob": "LICENSE",
|
|
36
|
+
"input": ".",
|
|
37
|
+
"output": "."
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"lint": {
|
|
43
|
+
"cache": true,
|
|
44
|
+
"executor": "@nx/eslint:lint",
|
|
45
|
+
"outputs": ["{options.outputFile}"],
|
|
46
|
+
"options": {
|
|
47
|
+
"lintFilePatterns": [
|
|
48
|
+
"{projectRoot}/**/*.ts",
|
|
49
|
+
"{projectRoot}/package.json"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"inputs": [
|
|
53
|
+
"default",
|
|
54
|
+
"{workspaceRoot}/.eslintrc.json",
|
|
55
|
+
"{workspaceRoot}/.eslintignore",
|
|
56
|
+
"{workspaceRoot}/eslint.config.js"
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
"test": {
|
|
60
|
+
"cache": true,
|
|
61
|
+
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
|
|
62
|
+
"executor": "@nx/jest:jest",
|
|
63
|
+
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
|
64
|
+
"options": {
|
|
65
|
+
"jestConfig": "{projectRoot}/jest.config.ts",
|
|
66
|
+
"passWithNoTests": true
|
|
67
|
+
},
|
|
68
|
+
"configurations": {
|
|
69
|
+
"ci": {
|
|
70
|
+
"ci": true,
|
|
71
|
+
"codeCoverage": true
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"e2e": {
|
|
76
|
+
"cache": true
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"namedInputs": {
|
|
80
|
+
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
|
81
|
+
"production": [
|
|
82
|
+
"default",
|
|
83
|
+
"!{projectRoot}/.eslintrc.json",
|
|
84
|
+
"!{projectRoot}/eslint.config.js",
|
|
85
|
+
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
|
|
86
|
+
"!{projectRoot}/tsconfig.spec.json",
|
|
87
|
+
"!{projectRoot}/jest.config.[jt]s",
|
|
88
|
+
"!{projectRoot}/src/test-setup.[jt]s",
|
|
89
|
+
"!{projectRoot}/test-setup.[jt]s"
|
|
90
|
+
],
|
|
91
|
+
"sharedGlobals": []
|
|
92
|
+
},
|
|
93
|
+
"pluginsConfig": {
|
|
94
|
+
"@nx/js": {
|
|
95
|
+
"analyzeSourceFiles": true
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# top level version field is required
|
|
2
|
+
version: 2
|
|
3
|
+
|
|
4
|
+
triggerPaths:
|
|
5
|
+
- "packages/*/package.json"
|
|
6
|
+
- "package.json"
|
|
7
|
+
- "pnpm-lock.yaml"
|
|
8
|
+
- "pnpm-workspace.yaml"
|
|
9
|
+
- "apps/*/package.json"
|
|
10
|
+
- "libs/*/package.json"
|
|
11
|
+
|
|
12
|
+
projectIgnorePaths:
|
|
13
|
+
- ".github/"
|
|
14
|
+
- ".vscode/"
|
|
15
|
+
- ".verdaccio/"
|
|
16
|
+
- ".nx/"
|
|
17
|
+
- "benchmarks/"
|
|
18
|
+
- "docs/"
|
|
19
|
+
- "examples/"
|
|
20
|
+
- "test/"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
-
"extends": "@storm-software/
|
|
3
|
+
"extends": "@storm-software/linting-tools/tsconfig/tsconfig.root.json",
|
|
4
4
|
"display": "Storm Software - <%= name %>",
|
|
5
5
|
"compilerOptions": {
|
|
6
6
|
"rootDir": ".",
|
|
@@ -3,26 +3,42 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
const devkit_1 = require("@nx/devkit");
|
|
5
5
|
const path = require("path");
|
|
6
|
+
const versions_1 = require("../../utils/versions");
|
|
6
7
|
function default_1(tree, options) {
|
|
8
|
+
var _a, _b;
|
|
7
9
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
8
10
|
const projectRoot = `.`;
|
|
9
|
-
(
|
|
11
|
+
(_a = options.description) !== null && _a !== void 0 ? _a : (options.description = `⚡The ${options.namespace ? options.namespace : options.name} monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.`);
|
|
12
|
+
(_b = options.namespace) !== null && _b !== void 0 ? _b : (options.namespace = options.organization);
|
|
13
|
+
(0, devkit_1.addProjectConfiguration)(tree, `@${options.namespace}/${options.name}`, {
|
|
10
14
|
root: projectRoot,
|
|
11
15
|
projectType: "application",
|
|
12
|
-
targets: {
|
|
16
|
+
targets: {
|
|
17
|
+
"local-registry": {
|
|
18
|
+
"executor": "@nx/js:verdaccio",
|
|
19
|
+
"options": {
|
|
20
|
+
"port": 4873,
|
|
21
|
+
"config": ".verdaccio/config.yml",
|
|
22
|
+
"storage": "tmp/local-registry/storage"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
13
26
|
});
|
|
14
27
|
(0, devkit_1.updateJson)(tree, "package.json", json => {
|
|
15
|
-
var _a, _b, _c, _d, _e, _f;
|
|
28
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
|
16
29
|
json.scripts = json.scripts || {};
|
|
17
30
|
json.version = "0.0.0";
|
|
18
31
|
json.private = true;
|
|
19
32
|
(_a = json.keywords) !== null && _a !== void 0 ? _a : (json.keywords = [
|
|
33
|
+
options.name,
|
|
34
|
+
options.namespace,
|
|
20
35
|
"storm",
|
|
21
36
|
"stormstack",
|
|
22
|
-
"storm-
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
37
|
+
"storm-ops",
|
|
38
|
+
"powerplant",
|
|
39
|
+
"power-plant",
|
|
40
|
+
"power-plant-lang",
|
|
41
|
+
"power-plant-model",
|
|
26
42
|
"impact",
|
|
27
43
|
"nextjs",
|
|
28
44
|
"prisma",
|
|
@@ -31,7 +47,6 @@ function default_1(tree, options) {
|
|
|
31
47
|
"strapi",
|
|
32
48
|
"graphql",
|
|
33
49
|
"sullivanpj",
|
|
34
|
-
"open-system",
|
|
35
50
|
"monorepo"
|
|
36
51
|
]);
|
|
37
52
|
(_b = json.homepage) !== null && _b !== void 0 ? _b : (json.homepage = "https://stormsoftware.org");
|
|
@@ -45,59 +60,104 @@ function default_1(tree, options) {
|
|
|
45
60
|
email: "contact@stormsoftware.org",
|
|
46
61
|
url: "https://stormsoftware.org"
|
|
47
62
|
});
|
|
63
|
+
(_f = json.namespace) !== null && _f !== void 0 ? _f : (json.namespace = `@${options.namespace}`);
|
|
64
|
+
(_g = json.description) !== null && _g !== void 0 ? _g : (json.description = options.description);
|
|
65
|
+
(_h = options.repositoryUrl) !== null && _h !== void 0 ? _h : (options.repositoryUrl = `https://github.com/${options.organization}/${options.name}}`);
|
|
66
|
+
(_j = json.repository) !== null && _j !== void 0 ? _j : (json.repository = {
|
|
67
|
+
type: "github",
|
|
68
|
+
url: `${options.repositoryUrl}.git`
|
|
69
|
+
});
|
|
48
70
|
// generate a start script into the package.json
|
|
49
71
|
json.scripts.adr = "pnpm log4brains adr new";
|
|
50
72
|
json.scripts["adr-preview"] = "pnpm log4brains preview";
|
|
51
|
-
json.scripts.prepare = "pnpm
|
|
52
|
-
json.scripts["prepare:husky"] = "is-ci || husky install";
|
|
73
|
+
json.scripts.prepare = "pnpm @storm-software/git-tools/scripts/prepare.js";
|
|
53
74
|
json.scripts.preinstall =
|
|
54
|
-
"pnpm @storm-software/
|
|
75
|
+
"pnpm @storm-software/git-tools/scripts/pre-install.js || npx -y only-allow pnpm";
|
|
55
76
|
json.scripts["install:csb"] =
|
|
56
77
|
"corepack enable && pnpm install --frozen-lockfile";
|
|
57
78
|
json.scripts.clean = "rimraf dist";
|
|
58
79
|
json.scripts.prebuild = "pnpm clean";
|
|
80
|
+
json.scripts["clean:tools"] = "rimraf dist/tools";
|
|
81
|
+
json.scripts["clean:docs"] = "rimraf dist/docs";
|
|
82
|
+
if (!options.includeApps) {
|
|
83
|
+
json.scripts["clean:packages"] = "rimraf dist/packages";
|
|
84
|
+
}
|
|
85
|
+
else {
|
|
86
|
+
json.scripts["clean:apps"] = "rimraf dist/apps";
|
|
87
|
+
json.scripts["clean:libs"] = "rimraf dist/libs";
|
|
88
|
+
json.scripts["clean:storybook"] = "rimraf dist/storybook";
|
|
89
|
+
}
|
|
59
90
|
json.scripts.build = "nx affected -t build --parallel=5";
|
|
60
91
|
json.scripts["build:all"] = "nx run-many -t build --all --parallel=5";
|
|
61
92
|
json.scripts["build:production"] =
|
|
62
93
|
"nx run-many -t build --all --prod --parallel=5";
|
|
94
|
+
json.scripts["build:tools"] =
|
|
95
|
+
"nx run-many -t build --projects=tools/* --parallel=5";
|
|
96
|
+
json.scripts["build:docs"] =
|
|
97
|
+
"nx run-many -t build --projects=docs/* --parallel=5";
|
|
98
|
+
if (!options.includeApps) {
|
|
99
|
+
json.scripts["build:packages"] =
|
|
100
|
+
"nx run-many -t build --projects=packages/* --parallel=5";
|
|
101
|
+
}
|
|
102
|
+
else {
|
|
103
|
+
json.scripts["build:apps"] =
|
|
104
|
+
"nx run-many -t build --projects=apps/* --parallel=5";
|
|
105
|
+
json.scripts["build:libs"] =
|
|
106
|
+
"nx run-many -t build --projects=libs/* --parallel=5";
|
|
107
|
+
json.scripts["build:storybook"] = "storybook build -s public";
|
|
108
|
+
}
|
|
63
109
|
json.scripts.nx = "nx";
|
|
64
110
|
json.scripts.graph = "nx graph";
|
|
65
111
|
json.scripts.lint = "pnpm storm-lint all";
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
112
|
+
if (options.includeApps) {
|
|
113
|
+
json.scripts.start = "nx serve";
|
|
114
|
+
json.scripts.storybook = "pnpm storybook dev -p 6006";
|
|
115
|
+
}
|
|
116
|
+
json.scripts.format = "nx format:write";
|
|
70
117
|
json.scripts.help = "nx help";
|
|
71
118
|
json.scripts["dep-graph"] = "nx dep-graph";
|
|
72
119
|
json.scripts["local-registry"] =
|
|
73
120
|
"nx local-registry @storm-software/storm-ops";
|
|
74
|
-
json.scripts
|
|
75
|
-
|
|
121
|
+
json.scripts.e2e = "nx e2e";
|
|
122
|
+
if (options.includeApps) {
|
|
123
|
+
json.scripts.test = "nx test";
|
|
124
|
+
}
|
|
125
|
+
else {
|
|
126
|
+
json.scripts.test = "nx test && pnpm test:storybook";
|
|
127
|
+
json.scripts["test:storybook"] = "pnpm test-storybook";
|
|
128
|
+
}
|
|
129
|
+
json.scripts.lint = "pnpm storm-lint all --skip-cspell";
|
|
76
130
|
json.scripts.commit = "pnpm storm-git commit";
|
|
131
|
+
json.scripts.readme =
|
|
132
|
+
'pnpm storm-git readme --templates="tools/readme-templates"';
|
|
77
133
|
json.scripts["api-extractor"] =
|
|
78
134
|
"nx g @storm-software/workspace-tools:api-extractor --outputPath 'docs/api-reference' --clean --no-interactive";
|
|
79
135
|
json.scripts.release = "pnpm storm-git release";
|
|
80
|
-
(
|
|
136
|
+
(_k = json.packageManager) !== null && _k !== void 0 ? _k : (json.packageManager = "pnpm@8.10.2");
|
|
81
137
|
json.engines = {
|
|
82
|
-
|
|
83
|
-
pnpm: ">=8.7.4"
|
|
138
|
+
pnpm: `>=${versions_1.pnpmVersion}`
|
|
84
139
|
};
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
140
|
+
if (options.includeApps) {
|
|
141
|
+
json.engines.node = `>=${versions_1.nodeVersion}`;
|
|
142
|
+
}
|
|
143
|
+
(_l = json.packageManager) !== null && _l !== void 0 ? _l : (json.packageManager = "pnpm@8.10.2");
|
|
144
|
+
json.prettier = "@storm-software/linting-tools/prettier/config.json";
|
|
145
|
+
if (options.includeApps) {
|
|
146
|
+
json.bundlewatch = {
|
|
147
|
+
files: [
|
|
148
|
+
{
|
|
149
|
+
path: "dist/*/*.js",
|
|
150
|
+
maxSize: "200kB"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
ci: {
|
|
154
|
+
trackBranches: ["main", "alpha", "beta"]
|
|
95
155
|
}
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
}
|
|
100
|
-
}
|
|
156
|
+
};
|
|
157
|
+
json.nextBundleAnalysis = {
|
|
158
|
+
"buildOutputDirectory": "dist/apps/web/app/.next"
|
|
159
|
+
};
|
|
160
|
+
}
|
|
101
161
|
json.nx = {
|
|
102
162
|
includedScripts: ["lint", "format"]
|
|
103
163
|
};
|
|
@@ -105,43 +165,58 @@ function default_1(tree, options) {
|
|
|
105
165
|
});
|
|
106
166
|
(0, devkit_1.generateFiles)(tree, path.join(__dirname, "files"), projectRoot, options);
|
|
107
167
|
yield (0, devkit_1.formatFiles)(tree);
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
nx: "latest",
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
|
|
168
|
+
let dependencies = {
|
|
169
|
+
"nx": "latest",
|
|
170
|
+
"@nx/js": "latest",
|
|
171
|
+
"@nx/workspace": "latest",
|
|
172
|
+
"@nx/devkit": "latest",
|
|
173
|
+
"@nx/eslint": "latest",
|
|
174
|
+
"@nx/eslint-plugin": "latest",
|
|
175
|
+
"@nx/jest": "latest",
|
|
114
176
|
"@storm-software/git-tools": "latest",
|
|
115
177
|
"@storm-software/linting-tools": "latest",
|
|
116
178
|
"@storm-software/workspace-tools": "latest",
|
|
117
179
|
"prettier-plugin-packagejson": "latest",
|
|
118
180
|
"prettier-plugin-prisma": "latest",
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
eslint: "latest",
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"eslint-plugin-import": "latest",
|
|
126
|
-
"eslint-plugin-jest": "latest",
|
|
127
|
-
"eslint-plugin-jsx-a11y": "latest",
|
|
128
|
-
"eslint-plugin-react": "latest",
|
|
129
|
-
"eslint-plugin-react-hooks": "latest",
|
|
130
|
-
"eslint-plugin-storybook": "latest",
|
|
131
|
-
"nx-cloud": "latest",
|
|
132
|
-
log4brains: "latest",
|
|
133
|
-
husky: "latest",
|
|
134
|
-
prettier: "latest",
|
|
135
|
-
"is-ci": "latest",
|
|
181
|
+
"tsup": "latest",
|
|
182
|
+
"eslint": "latest",
|
|
183
|
+
"@eslint/eslintrc": "latest",
|
|
184
|
+
"log4brains": "latest",
|
|
185
|
+
"husky": "latest",
|
|
186
|
+
"prettier": "latest",
|
|
136
187
|
"lint-staged": "latest",
|
|
137
|
-
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
|
|
188
|
+
"semantic-release": "latest",
|
|
189
|
+
"@semantic-release/changelog": "latest",
|
|
190
|
+
"@semantic-release/commit-analyzer": "latest",
|
|
191
|
+
"@semantic-release/exec": "latest",
|
|
192
|
+
"@semantic-release/git": "latest",
|
|
193
|
+
"@semantic-release/github": "latest",
|
|
194
|
+
"@semantic-release/npm": "latest",
|
|
195
|
+
"@semantic-release/release-notes-generator": "latest",
|
|
196
|
+
"jest": "latest",
|
|
197
|
+
"jest-environment-jsdom": "latest",
|
|
198
|
+
"jest-environment-node": "latest",
|
|
199
|
+
"ts-jest": "latest",
|
|
200
|
+
"ts-node": "latest",
|
|
201
|
+
"tslib": "latest",
|
|
202
|
+
"typescript": versions_1.typescriptVersion,
|
|
203
|
+
"@swc-node/register": "latest",
|
|
204
|
+
"@swc/cli": "latest",
|
|
205
|
+
"@swc/core": "latest",
|
|
206
|
+
"@swc/helpers": "latest",
|
|
142
207
|
"@types/react": "latest",
|
|
143
|
-
"@types/react-dom": "latest"
|
|
144
|
-
|
|
208
|
+
"@types/react-dom": "latest",
|
|
209
|
+
"@types/jest": "latest",
|
|
210
|
+
"@types/node": "20.8.10",
|
|
211
|
+
"verdaccio": "latest"
|
|
212
|
+
};
|
|
213
|
+
if (options.includeApps) {
|
|
214
|
+
dependencies = Object.assign(Object.assign({}, dependencies), { "bundlewatch": "latest", "react": "latest", "react-dom": "latest", "storybook": "latest", "@storybook/addons": "latest", "@nx/react": "latest", "@nx/next": "latest", "@nx/node": "latest", "@nx/storybook": "latest" });
|
|
215
|
+
}
|
|
216
|
+
if (options.nxCloud) {
|
|
217
|
+
dependencies = Object.assign(Object.assign({}, dependencies), { "nx-cloud": "latest" });
|
|
218
|
+
}
|
|
219
|
+
return (0, devkit_1.addDependenciesToPackageJson)(tree, dependencies, {});
|
|
145
220
|
});
|
|
146
221
|
}
|
|
147
222
|
exports.default = default_1;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../packages/workspace-tools/src/generators/preset/generator.ts"],"names":[],"mappings":";;;AAAA,uCAOoB;AACpB,6BAA6B;
|
|
1
|
+
{"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../packages/workspace-tools/src/generators/preset/generator.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
export type NxClientMode = "light" | "dark";
|
|
1
2
|
export interface PresetGeneratorSchema {
|
|
2
3
|
name: string;
|
|
4
|
+
organization: string;
|
|
5
|
+
includeApps: boolean;
|
|
6
|
+
namespace?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
repositoryUrl?: string;
|
|
9
|
+
nxCloud: boolean;
|
|
10
|
+
mode: NxClientMode;
|
|
3
11
|
}
|
|
@@ -2,17 +2,101 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/schema",
|
|
3
3
|
"$id": "Preset",
|
|
4
4
|
"title": "Storm Workspace preset",
|
|
5
|
+
"description": "Storm workspace preset generator",
|
|
5
6
|
"type": "object",
|
|
7
|
+
"example": [
|
|
8
|
+
{
|
|
9
|
+
"command": "nx g @storm-software/workspace-tools:preset --name 'example-repo'",
|
|
10
|
+
"description": "Generate a storm workspace with the name: example-repo, namespace: storm-software, organization: storm-software, and repositoryUrl: 'https://github.com/storm-software/example-repo'."
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
{
|
|
14
|
+
"command": "nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example'",
|
|
15
|
+
"description": "Generate a storm workspace with the name: example-repo, namespace: example, and repositoryUrl: 'https://github.com/storm-software/example-repo'."
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"command": "nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example' --organization 'example-org' --description 'An example workspace'",
|
|
19
|
+
"description": "Generate a storm workspace with the name: example-repo, namespace: example, organization: example-org, description: 'An example workspace', and repositoryUrl: 'https://github.com/example-org/example-repo'."
|
|
20
|
+
}
|
|
21
|
+
],
|
|
6
22
|
"properties": {
|
|
7
23
|
"name": {
|
|
8
24
|
"type": "string",
|
|
9
|
-
"description": "",
|
|
25
|
+
"description": "The name of the workspace root.",
|
|
10
26
|
"$default": {
|
|
11
27
|
"$source": "argv",
|
|
12
28
|
"index": 0
|
|
13
29
|
},
|
|
14
30
|
"x-prompt": "What name would you like to use?"
|
|
31
|
+
},
|
|
32
|
+
"organization": {
|
|
33
|
+
"type": "string",
|
|
34
|
+
"description": "The organization that owns the workspace.",
|
|
35
|
+
"default": "storm-software",
|
|
36
|
+
"$default": {
|
|
37
|
+
"$source": "argv",
|
|
38
|
+
"index": 1
|
|
39
|
+
},
|
|
40
|
+
"x-prompt": "What organization owns this repository?"
|
|
41
|
+
},
|
|
42
|
+
"namespace": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "The npm scope used for the workspace. Defaults to the organization name.",
|
|
45
|
+
"$default": {
|
|
46
|
+
"$source": "argv",
|
|
47
|
+
"index": 2
|
|
48
|
+
},
|
|
49
|
+
"x-prompt": "What namespace (npm scope) would you like to use? Defaults to the organization name."
|
|
50
|
+
},
|
|
51
|
+
"includeApps": {
|
|
52
|
+
"type": "boolean",
|
|
53
|
+
"description": "Should a separate `apps` folder be created for this workspace (if Yes: `apps` and `libs` folders will be added, if No: `packages` folders will be added)?",
|
|
54
|
+
"default": false,
|
|
55
|
+
"$default": {
|
|
56
|
+
"$source": "argv",
|
|
57
|
+
"index": 3
|
|
58
|
+
},
|
|
59
|
+
"x-prompt": "Is the workspace a purely package based repository (one large packages folder) or does it include apps (split between apps and libs folders)?"
|
|
60
|
+
},
|
|
61
|
+
"description": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"description": "The description of the workspace to use in the package.json and README.md files.",
|
|
64
|
+
"$default": {
|
|
65
|
+
"$source": "argv",
|
|
66
|
+
"index": 4
|
|
67
|
+
},
|
|
68
|
+
"x-prompt": "Provide a description of the workspace to use in the package.json and README.md files."
|
|
69
|
+
},
|
|
70
|
+
"repositoryUrl": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "The URL of the workspace in GitHub. Defaults to the https://github.com/<organization>/<name>",
|
|
73
|
+
"$default": {
|
|
74
|
+
"$source": "argv",
|
|
75
|
+
"index": 5
|
|
76
|
+
},
|
|
77
|
+
"x-prompt": "What is the workspace's GitHub repository URL?"
|
|
78
|
+
},
|
|
79
|
+
"nxCloud": {
|
|
80
|
+
"type": "boolean",
|
|
81
|
+
"description": "Should distributed caching with Nx Cloud be enabled for the workspace?",
|
|
82
|
+
"default": false,
|
|
83
|
+
"$default": {
|
|
84
|
+
"$source": "argv",
|
|
85
|
+
"index": 6
|
|
86
|
+
},
|
|
87
|
+
"x-prompt": "Should distributed caching with Nx Cloud be enabled for the workspace?"
|
|
88
|
+
},
|
|
89
|
+
"mode": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"description": "Which client mode should be used for the Nx Task Runner?",
|
|
92
|
+
"default": "dark",
|
|
93
|
+
"enum": ["light", "dark"],
|
|
94
|
+
"$default": {
|
|
95
|
+
"$source": "argv",
|
|
96
|
+
"index": 7
|
|
97
|
+
},
|
|
98
|
+
"x-prompt": "Which client mode should be used for the Nx Task Runner?"
|
|
15
99
|
}
|
|
16
100
|
},
|
|
17
|
-
"required": ["name"]
|
|
101
|
+
"required": ["name", "organization", "includeApps", "nxCloud", "mode"]
|
|
18
102
|
}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -9,9 +9,12 @@ export declare const swcCoreVersion = "~1.3.95";
|
|
|
9
9
|
export declare const swcHelpersVersion = "~0.5.3";
|
|
10
10
|
export declare const swcNodeVersion = "1.6.8";
|
|
11
11
|
export declare const tsLibVersion = "2.6.2";
|
|
12
|
-
export declare const typesNodeVersion = "20.
|
|
12
|
+
export declare const typesNodeVersion = "20.9.0";
|
|
13
13
|
export declare const verdaccioVersion = "5.27.0";
|
|
14
14
|
export declare const typescriptVersion = "~5.2.2";
|
|
15
15
|
export declare const eslintVersion = "~8.53.0";
|
|
16
16
|
export declare const lintStagedVersion = "15.0.2";
|
|
17
17
|
export declare const semanticReleaseVersion = "22.0.7";
|
|
18
|
+
|
|
19
|
+
export declare const nodeVersion = "20.9.0";
|
|
20
|
+
export declare const pnpmVersion = "8.10.2";
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"allow": [
|
|
3
|
-
"attacks",
|
|
4
|
-
"color",
|
|
5
|
-
"dead",
|
|
6
|
-
"execute",
|
|
7
|
-
"executed",
|
|
8
|
-
"executes",
|
|
9
|
-
"execution",
|
|
10
|
-
"executions",
|
|
11
|
-
"failed",
|
|
12
|
-
"failure",
|
|
13
|
-
"failures",
|
|
14
|
-
"fire",
|
|
15
|
-
"fires",
|
|
16
|
-
"firing",
|
|
17
|
-
"hook",
|
|
18
|
-
"hooks",
|
|
19
|
-
"host-hostess",
|
|
20
|
-
"invalid",
|
|
21
|
-
"remains",
|
|
22
|
-
"special",
|
|
23
|
-
"white",
|
|
24
|
-
"just",
|
|
25
|
-
"easy",
|
|
26
|
-
"easily",
|
|
27
|
-
"simple",
|
|
28
|
-
"colors",
|
|
29
|
-
"clearly",
|
|
30
|
-
"obvious",
|
|
31
|
-
"pros",
|
|
32
|
-
"blind",
|
|
33
|
-
"xxx",
|
|
34
|
-
"tinker",
|
|
35
|
-
"reject",
|
|
36
|
-
"terror",
|
|
37
|
-
"Primitive"
|
|
38
|
-
]
|
|
39
|
-
}
|