@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
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,91 @@
|
|
|
1
|
+
# [1.2.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.1.1...workspace-tools-v1.2.0) (2023-11-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **create-storm-workspace:** Resolved issues with create workspace script options ([b81eaf2](https://github.com/storm-software/storm-ops/commit/b81eaf2c493dd319458f5ad5b375612fb3b8206f))
|
|
7
|
+
* **git-tools:** Added missing GitHub release config and removed failed GitGuardian lines ([4b64698](https://github.com/storm-software/storm-ops/commit/4b646983226fa979c76f8078ffd1cee1d544f1a1))
|
|
8
|
+
* **storm-ops:** Regenerate pnpm lockfile ([6cc4c75](https://github.com/storm-software/storm-ops/commit/6cc4c75486d843327d8e438e34dd08182bb0e052))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Added init generator and enhanced preset template files ([c1ac333](https://github.com/storm-software/storm-ops/commit/c1ac33355520a717df93f157f31bb311dd81b7c6))
|
|
14
|
+
|
|
15
|
+
# [1.2.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.1.1...workspace-tools-v1.2.0) (2023-11-06)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **create-storm-workspace:** Resolved issues with create workspace script options ([b81eaf2](https://github.com/storm-software/storm-ops/commit/b81eaf2c493dd319458f5ad5b375612fb3b8206f))
|
|
21
|
+
* **git-tools:** Added missing GitHub release config and removed failed GitGuardian lines ([4b64698](https://github.com/storm-software/storm-ops/commit/4b646983226fa979c76f8078ffd1cee1d544f1a1))
|
|
22
|
+
* **storm-ops:** Regenerate pnpm lockfile ([6cc4c75](https://github.com/storm-software/storm-ops/commit/6cc4c75486d843327d8e438e34dd08182bb0e052))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **workspace-tools:** Added init generator and enhanced preset template files ([c1ac333](https://github.com/storm-software/storm-ops/commit/c1ac33355520a717df93f157f31bb311dd81b7c6))
|
|
28
|
+
|
|
29
|
+
# [1.2.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.1.1...workspace-tools-v1.2.0) (2023-11-06)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* **create-storm-workspace:** Resolved issues with create workspace script options ([b81eaf2](https://github.com/storm-software/storm-ops/commit/b81eaf2c493dd319458f5ad5b375612fb3b8206f))
|
|
35
|
+
* **git-tools:** Added missing GitHub release config and removed failed GitGuardian lines ([4b64698](https://github.com/storm-software/storm-ops/commit/4b646983226fa979c76f8078ffd1cee1d544f1a1))
|
|
36
|
+
* **storm-ops:** Regenerate pnpm lockfile ([6cc4c75](https://github.com/storm-software/storm-ops/commit/6cc4c75486d843327d8e438e34dd08182bb0e052))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* **workspace-tools:** Added init generator and enhanced preset template files ([c1ac333](https://github.com/storm-software/storm-ops/commit/c1ac33355520a717df93f157f31bb311dd81b7c6))
|
|
42
|
+
|
|
43
|
+
# [1.2.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.1.1...workspace-tools-v1.2.0) (2023-11-06)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
* **git-tools:** Added missing GitHub release config and removed failed GitGuardian lines ([4b64698](https://github.com/storm-software/storm-ops/commit/4b646983226fa979c76f8078ffd1cee1d544f1a1))
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### Features
|
|
52
|
+
|
|
53
|
+
* **workspace-tools:** Added init generator and enhanced preset template files ([c1ac333](https://github.com/storm-software/storm-ops/commit/c1ac33355520a717df93f157f31bb311dd81b7c6))
|
|
54
|
+
|
|
55
|
+
# [1.2.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.1.1...workspace-tools-v1.2.0) (2023-11-06)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* **git-tools:** Added missing GitHub release config and removed failed GitGuardian lines ([4b64698](https://github.com/storm-software/storm-ops/commit/4b646983226fa979c76f8078ffd1cee1d544f1a1))
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
### Features
|
|
64
|
+
|
|
65
|
+
* **workspace-tools:** Added init generator and enhanced preset template files ([c1ac333](https://github.com/storm-software/storm-ops/commit/c1ac33355520a717df93f157f31bb311dd81b7c6))
|
|
66
|
+
|
|
67
|
+
# [1.2.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.1.1...workspace-tools-v1.2.0) (2023-11-06)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Features
|
|
71
|
+
|
|
72
|
+
* **workspace-tools:** Added init generator and enhanced preset template files ([c1ac333](https://github.com/storm-software/storm-ops/commit/c1ac33355520a717df93f157f31bb311dd81b7c6))
|
|
73
|
+
|
|
74
|
+
## [1.1.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.1.0...workspace-tools-v1.1.1) (2023-11-06)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### Bug Fixes
|
|
78
|
+
|
|
79
|
+
* **storm-ops:** Add @semantic-release/commit-analyzer dependency back to workspace root ([553dd65](https://github.com/storm-software/storm-ops/commit/553dd6548aba57eada49dce635312b2c4bdd474f))
|
|
80
|
+
* **storm-ops:** Resolved issue with prepare script in workspace root ([4caa35a](https://github.com/storm-software/storm-ops/commit/4caa35a09421e0ac48a0d2eddc27843c4dcff6e7))
|
|
81
|
+
|
|
82
|
+
# [1.1.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.0.1...workspace-tools-v1.1.0) (2023-11-06)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Features
|
|
86
|
+
|
|
87
|
+
* **workspace-tools:** Added the init generator and tsup build executor ([e34d64c](https://github.com/storm-software/storm-ops/commit/e34d64c84027d60cb29ca54fa957b5994128b4aa))
|
|
88
|
+
|
|
1
89
|
## [1.0.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.0.0...workspace-tools-v1.0.1) (2023-11-06)
|
|
2
90
|
|
|
3
91
|
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
15
15
|
|
|
16
16
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
|
|
17
17
|
|
|
18
|
-
[](https://prettier.io/)
|
|
19
19
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
20
20
|
|
|
21
21
|
<h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ - This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
|
|
@@ -128,7 +128,7 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
128
128
|
<img src="https://pub-e71cff0f90204755bc910518d63cacf8.r2.dev/logo-opengraph.gif" width="100%"/>
|
|
129
129
|
</div>
|
|
130
130
|
<div align="center">
|
|
131
|
-
<a href="https://www.patsullivan.org" target="_blank">Website</a> | <a href="https://
|
|
131
|
+
<a href="https://www.patsullivan.org" target="_blank">Website</a> | <a href="https://www.patsullivan.org/contact" target="_blank">Contact</a> | <a href="https://linkedin.com/in/patrick-sullivan-865526b0" target="_blank">LinkedIn</a> | <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> | <a href="https://github.com/sullivanpj" target="_blank">GitHub</a> | <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
|
|
132
132
|
</div>
|
|
133
133
|
|
|
134
134
|
<div align="center">
|
package/config/nx.json
CHANGED
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"options": {
|
|
14
14
|
"cacheableOperations": [
|
|
15
15
|
"build",
|
|
16
|
-
"build-types",
|
|
17
16
|
"lint",
|
|
18
17
|
"format",
|
|
19
18
|
"test",
|
|
@@ -39,6 +38,9 @@
|
|
|
39
38
|
"globalNonBuildAffectingConfig": [
|
|
40
39
|
"{workspaceRoot}/.log4brains.yml",
|
|
41
40
|
"{workspaceRoot}/.eslintrc.json",
|
|
41
|
+
"{workspaceRoot}/.all-contributorsrc",
|
|
42
|
+
"{workspaceRoot}/.markdownlint.json",
|
|
43
|
+
"{workspaceRoot}/socket.yaml",
|
|
42
44
|
"{workspaceRoot}/jest.config.ts"
|
|
43
45
|
],
|
|
44
46
|
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
|
@@ -62,7 +64,7 @@
|
|
|
62
64
|
"cache": true,
|
|
63
65
|
"inputs": ["default", "^production"],
|
|
64
66
|
"outputs": ["{options.outputPath}"],
|
|
65
|
-
"dependsOn": ["
|
|
67
|
+
"dependsOn": ["^build"],
|
|
66
68
|
"options": {
|
|
67
69
|
"main": "{projectRoot}/src/index.ts",
|
|
68
70
|
"outputPath": "dist/{projectRoot}",
|
|
@@ -81,15 +83,27 @@
|
|
|
81
83
|
]
|
|
82
84
|
}
|
|
83
85
|
},
|
|
84
|
-
"
|
|
86
|
+
"lint": {
|
|
85
87
|
"cache": true,
|
|
86
|
-
"executor": "@nx/
|
|
88
|
+
"executor": "@nx/eslint:lint",
|
|
89
|
+
"outputs": ["{options.outputFile}"],
|
|
90
|
+
"options": {
|
|
91
|
+
"lintFilePatterns": [
|
|
92
|
+
"{projectRoot}/**/*.ts",
|
|
93
|
+
"{projectRoot}/package.json"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
87
96
|
"inputs": [
|
|
88
97
|
"default",
|
|
89
|
-
"
|
|
90
|
-
"{workspaceRoot}
|
|
91
|
-
"{workspaceRoot}/
|
|
92
|
-
]
|
|
98
|
+
"{workspaceRoot}/.eslintrc.json",
|
|
99
|
+
"{workspaceRoot}/.eslintignore",
|
|
100
|
+
"{workspaceRoot}/eslint.config.js"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"test": {
|
|
104
|
+
"cache": true,
|
|
105
|
+
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
|
|
106
|
+
"executor": "@nx/jest:jest",
|
|
93
107
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
|
94
108
|
"options": {
|
|
95
109
|
"jestConfig": "{projectRoot}/jest.config.ts",
|
|
@@ -105,15 +119,6 @@
|
|
|
105
119
|
"e2e": {
|
|
106
120
|
"cache": true
|
|
107
121
|
},
|
|
108
|
-
"lint": {
|
|
109
|
-
"cache": true,
|
|
110
|
-
"executor": "@nx/linter:eslint",
|
|
111
|
-
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"],
|
|
112
|
-
"outputs": ["{options.outputFile}"],
|
|
113
|
-
"options": {
|
|
114
|
-
"lintFilePatterns": ["{projectRoot}/**/*.ts"]
|
|
115
|
-
}
|
|
116
|
-
},
|
|
117
122
|
"build-storybook": {
|
|
118
123
|
"cache": true,
|
|
119
124
|
"inputs": [
|
|
@@ -125,41 +130,5 @@
|
|
|
125
130
|
]
|
|
126
131
|
}
|
|
127
132
|
},
|
|
128
|
-
"generators": {
|
|
129
|
-
"@nx/react": {
|
|
130
|
-
"application": {
|
|
131
|
-
"style": "css",
|
|
132
|
-
"linter": "eslint",
|
|
133
|
-
"bundler": "webpack",
|
|
134
|
-
"unitTestRunner": "jest",
|
|
135
|
-
"babel": true
|
|
136
|
-
},
|
|
137
|
-
"component": {
|
|
138
|
-
"style": "css"
|
|
139
|
-
},
|
|
140
|
-
"library": {
|
|
141
|
-
"style": "css",
|
|
142
|
-
"linter": "eslint",
|
|
143
|
-
"unitTestRunner": "jest"
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"@nx/next": {
|
|
147
|
-
"application": {
|
|
148
|
-
"style": "css",
|
|
149
|
-
"linter": "eslint",
|
|
150
|
-
"bundler": "swc",
|
|
151
|
-
"unitTestRunner": "jest"
|
|
152
|
-
},
|
|
153
|
-
"component": {
|
|
154
|
-
"style": "css"
|
|
155
|
-
},
|
|
156
|
-
"library": {
|
|
157
|
-
"style": "css",
|
|
158
|
-
"linter": "eslint",
|
|
159
|
-
"bundler": "swc",
|
|
160
|
-
"unitTestRunner": "jest"
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
133
|
"plugins": ["@nx/next"]
|
|
165
134
|
}
|
package/package.json
CHANGED
|
@@ -8,22 +8,7 @@ function stormInitGenerator(tree, schema) {
|
|
|
8
8
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
9
9
|
const task = (0, devkit_1.addDependenciesToPackageJson)(tree, {
|
|
10
10
|
"nx": versions_1.nxVersion,
|
|
11
|
-
"@nx/workspace": versions_1.nxVersion
|
|
12
|
-
"tsup": versions_1.tsupVersion,
|
|
13
|
-
"prettier": versions_1.prettierVersion,
|
|
14
|
-
"prettier-plugin-packagejson": versions_1.prettierPackageJsonVersion,
|
|
15
|
-
"prettier-plugin-prisma": versions_1.prettierPrismaVersion,
|
|
16
|
-
"@swc/cli": versions_1.swcCliVersion,
|
|
17
|
-
"@swc/core": versions_1.swcCoreVersion,
|
|
18
|
-
"@swc/helpers": versions_1.swcHelpersVersion,
|
|
19
|
-
"@swc-node/register": versions_1.swcNodeVersion,
|
|
20
|
-
"tslib": versions_1.tsLibVersion,
|
|
21
|
-
"@types/node": versions_1.typesNodeVersion,
|
|
22
|
-
"verdaccio": versions_1.verdaccioVersion,
|
|
23
|
-
"typescript": versions_1.typescriptVersion,
|
|
24
|
-
"eslint": versions_1.eslintVersion,
|
|
25
|
-
"lint-staged": versions_1.lintStagedVersion,
|
|
26
|
-
"semantic-release": versions_1.semanticReleaseVersion
|
|
11
|
+
"@nx/workspace": versions_1.nxVersion
|
|
27
12
|
}, {});
|
|
28
13
|
if (!schema.skipFormat) {
|
|
29
14
|
yield (0, devkit_1.formatFiles)(tree);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.js","sourceRoot":"","sources":["../../../../../../packages/workspace-tools/src/generators/init/init.ts"],"names":[],"mappings":";;;;AAAA,uCAA6E;AAC7E,
|
|
1
|
+
{"version":3,"file":"init.js","sourceRoot":"","sources":["../../../../../../packages/workspace-tools/src/generators/init/init.ts"],"names":[],"mappings":";;;;AAAA,uCAA6E;AAC7E,mDAAiD;AAGjD,SAAsB,kBAAkB,CAAC,IAAU,EAAE,MAAc;;QACjE,MAAM,IAAI,GAAG,IAAA,qCAA4B,EACvC,IAAI,EACJ;YACE,IAAI,EAAE,oBAAS;YACf,eAAe,EAAE,oBAAS;SAC3B,EACD,EAAE,CACH,CAAC;QAEF,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE;YACtB,MAAM,IAAA,oBAAW,EAAC,IAAI,CAAC,CAAC;SACzB;QAED,OAAO,IAAI,CAAC;IACd,CAAC;CAAA;AAfD,gDAeC;AAED,kBAAe,kBAAkB,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"projectName": "<%= name %>",
|
|
3
|
-
"projectOwner": "
|
|
3
|
+
"projectOwner": "storm-software",
|
|
4
4
|
"repoType": "github",
|
|
5
5
|
"repoHost": "https://github.com",
|
|
6
6
|
"files": [
|
|
@@ -14,9 +14,13 @@
|
|
|
14
14
|
"login": "sullivanpj",
|
|
15
15
|
"name": "Patrick Sullivan",
|
|
16
16
|
"avatar_url": "https://avatars.githubusercontent.com/u/99053093?v=4",
|
|
17
|
-
"profile": "http://www.
|
|
17
|
+
"profile": "http://www.sullypat.com/",
|
|
18
18
|
"contributions": [
|
|
19
|
-
"
|
|
19
|
+
"design",
|
|
20
|
+
"code",
|
|
21
|
+
"tool",
|
|
22
|
+
"doc",
|
|
23
|
+
"test"
|
|
20
24
|
]
|
|
21
25
|
},
|
|
22
26
|
{
|
|
@@ -27,8 +31,18 @@
|
|
|
27
31
|
"contributions": [
|
|
28
32
|
"design"
|
|
29
33
|
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"login": "stormie-bot",
|
|
37
|
+
"name": "Stormie",
|
|
38
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/149802440?v=4",
|
|
39
|
+
"profile": "http://stormsoftware.org",
|
|
40
|
+
"contributions": [
|
|
41
|
+
"maintenance"
|
|
42
|
+
]
|
|
30
43
|
}
|
|
31
44
|
],
|
|
32
45
|
"contributorsPerLine": 7,
|
|
33
|
-
"linkToUsage": true
|
|
46
|
+
"linkToUsage": true,
|
|
47
|
+
"commitType": "docs"
|
|
34
48
|
}
|
|
@@ -1,58 +1,38 @@
|
|
|
1
|
-
|
|
2
|
-
TYPESENSE_API_KEY=xyz
|
|
1
|
+
TYPESENSE_API_KEY="xyz"
|
|
3
2
|
NODE_OPTIONS="--trace-warnings --heapsnapshot-near-heap-limit=3 --heapsnapshot-signal=SIGTERM"
|
|
4
3
|
|
|
5
|
-
ROOT_HOST=192.168.1.18
|
|
6
|
-
HOST_SERVER=host.docker.internal
|
|
7
4
|
AKKA_STREAMS_KAFKA_TEST_FILE_LOGGING=true
|
|
8
|
-
RUST_BACKTRACE=full
|
|
5
|
+
RUST_BACKTRACE="full"
|
|
9
6
|
# PUPPETEER_SKIP_DOWNLOAD=true
|
|
10
7
|
|
|
11
|
-
HS_SERVICE_NAME="@<%= name
|
|
12
|
-
# HS_DEBUG=true
|
|
8
|
+
HS_SERVICE_NAME="@<%= organization %>/<%= name %>"
|
|
13
9
|
|
|
14
|
-
SENTRY_ORGANIZATION="
|
|
10
|
+
SENTRY_ORGANIZATION="stormstack"
|
|
15
11
|
SENTRY_PROPERTIES="apps/web/shell"
|
|
16
12
|
|
|
17
13
|
DEFAULT_LOCALE="en_US"
|
|
18
14
|
DEFAULT_TIMEZONE="America/New_York"
|
|
19
15
|
|
|
16
|
+
STORM_REPO_ROOT=
|
|
20
17
|
STORM_REPO_OWNER="sullivanpj"
|
|
21
|
-
STORM_REPO_WORKER="
|
|
18
|
+
STORM_REPO_WORKER="stormie-bot"
|
|
19
|
+
STORM_REPO_ORG="<%= organization %>"
|
|
22
20
|
STORM_REPO_NAME="<%= name %>"
|
|
23
|
-
STORM_REPO_URL="https://github.com
|
|
21
|
+
STORM_REPO_URL="https://github.com/<%= organization %>/<%= name %>"
|
|
24
22
|
STORM_BRANCH="main"
|
|
25
|
-
STORM_PRE_MAJOR=
|
|
26
|
-
|
|
27
|
-
# OAUTH_GOOGLE_CLIENT_ID=
|
|
28
|
-
# OAUTH_GOOGLE_CLIENT_SECRET=
|
|
29
|
-
# OAUTH_GOOGLE_AUTHORIZATION_ENDPOINT=
|
|
30
|
-
# OAUTH_GOOGLE_TOKEN_ENDPOINT=
|
|
31
|
-
|
|
32
|
-
VIRUS_TOTAL_API_URL="https://www.virustotal.com"
|
|
33
|
-
# VIRUS_TOTAL_API_KEY=
|
|
34
|
-
|
|
35
|
-
UPSTASH_KAFKA_REST_URL="https://fitting-dassie-7031-us1-rest-kafka.upstash.io"
|
|
36
|
-
# UPSTASH_KAFKA_REST_USERNAME=
|
|
37
|
-
# UPSTASH_KAFKA_REST_PASSWORD=
|
|
38
|
-
|
|
39
|
-
PRISMA_GENERATE_DATAPROXY=true
|
|
40
|
-
FORECAST_RUNTIME_MODULE="node_modules/.storm"
|
|
41
|
-
|
|
42
|
-
NO_D1_WARNING=true
|
|
23
|
+
STORM_PRE_MAJOR=false
|
|
43
24
|
|
|
44
25
|
INFISICAL_ENVIRONMENT="prod"
|
|
45
26
|
|
|
46
27
|
READINESS_CHECK_PATH="/readiness"
|
|
47
28
|
HEALTH_CHECK_PATH="/healthcheck"
|
|
48
29
|
|
|
49
|
-
LOG_LEVEL="
|
|
30
|
+
LOG_LEVEL="info"
|
|
50
31
|
# LOG_PATH="C:\\Development\\stormstack\\logs"
|
|
51
32
|
|
|
52
|
-
PNPM_VERSION="8.
|
|
33
|
+
PNPM_VERSION="8.10.2"
|
|
53
34
|
|
|
54
35
|
DEV_EDITOR_ID="vscode"
|
|
55
|
-
STORM_REPO_ROOT="C:\\Development\\<%= name %>"
|
|
56
36
|
|
|
57
37
|
THEME_PRIMARY_COLOR="#1fb2a6"
|
|
58
38
|
THEME_BACKGROUND_COLOR="#1d232a"
|
|
@@ -61,4 +41,3 @@ THEME_INFO_COLOR="#0ea5e9"
|
|
|
61
41
|
THEME_WARNING_COLOR="#fcc419"
|
|
62
42
|
THEME_ERROR_COLOR="#7d1a1a"
|
|
63
43
|
|
|
64
|
-
# NODE_ENV=production
|
|
@@ -41,3 +41,12 @@
|
|
|
41
41
|
|
|
42
42
|
# Other
|
|
43
43
|
*.exe filter=lfs diff=lfs merge=lfs -text
|
|
44
|
+
|
|
45
|
+
###############################
|
|
46
|
+
# GitHub linguist #
|
|
47
|
+
###############################
|
|
48
|
+
|
|
49
|
+
apps/**/.next/** -text linguist-vendored
|
|
50
|
+
|
|
51
|
+
# Make dist folder indexable for github search
|
|
52
|
+
dist/** linguist-generated=false
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
If you want to make a small change, go ahead and raise a pull request, otherwise follow these steps:
|
|
6
6
|
|
|
7
|
-
1. View the [Issues](https://github.com
|
|
7
|
+
1. View the [Issues](https://github.com/<%= organization %>/<%= name %>/issues) page to see a To-Do list of things to be implemented.
|
|
8
8
|
2. Raise an issue or comment on an existing issue with what you want to contribute if one does not already exist.
|
|
9
9
|
3. When you get the go ahead, follow the coding guidelines and raise a pull request.
|
|
10
10
|
4. Include a link to the issue in your pull request.
|
|
@@ -16,7 +16,7 @@ body:
|
|
|
16
16
|
description: How can we get in touch with you if we need more info?
|
|
17
17
|
placeholder: ex. email@example.com
|
|
18
18
|
validations:
|
|
19
|
-
required:
|
|
19
|
+
required: true
|
|
20
20
|
- type: textarea
|
|
21
21
|
id: actual-results
|
|
22
22
|
attributes:
|
|
@@ -35,20 +35,51 @@ body:
|
|
|
35
35
|
value: "What behavior are you expecting to experience?"
|
|
36
36
|
validations:
|
|
37
37
|
required: true
|
|
38
|
+
- type: dropdown
|
|
39
|
+
id: package
|
|
40
|
+
attributes:
|
|
41
|
+
label: Package Name
|
|
42
|
+
description: Which package are you experiencing this error with?
|
|
43
|
+
multiple: true
|
|
44
|
+
options:
|
|
45
|
+
- create-storm-workspace
|
|
46
|
+
- Linting Tools
|
|
47
|
+
- Git Tools
|
|
48
|
+
- Workspace Tools
|
|
49
|
+
validations:
|
|
50
|
+
required: true
|
|
38
51
|
- type: dropdown
|
|
39
52
|
id: version
|
|
40
53
|
attributes:
|
|
41
54
|
label: Version
|
|
42
55
|
description: What version of our software are you running?
|
|
43
56
|
options:
|
|
44
|
-
- 1.0.
|
|
45
|
-
- 1.0.3 (Edge)
|
|
57
|
+
- 1.0.0
|
|
46
58
|
validations:
|
|
47
|
-
required:
|
|
59
|
+
required: false
|
|
60
|
+
- type: dropdown
|
|
61
|
+
id: operating-system
|
|
62
|
+
attributes:
|
|
63
|
+
label: What platform(s) are you seeing the problem in?
|
|
64
|
+
multiple: true
|
|
65
|
+
options:
|
|
66
|
+
- Microsoft Windows
|
|
67
|
+
- MacOS
|
|
68
|
+
- ChromeOS
|
|
69
|
+
- iOS
|
|
70
|
+
- Android
|
|
71
|
+
- Ubuntu
|
|
72
|
+
- Debian
|
|
73
|
+
- Fedora
|
|
74
|
+
- CentOS
|
|
75
|
+
- Linux (General)
|
|
76
|
+
- Other
|
|
77
|
+
validations:
|
|
78
|
+
required: false
|
|
48
79
|
- type: dropdown
|
|
49
80
|
id: browsers
|
|
50
81
|
attributes:
|
|
51
|
-
label: What browsers are you seeing the problem on?
|
|
82
|
+
label: What browsers are you seeing the problem on (if applicable)?
|
|
52
83
|
multiple: true
|
|
53
84
|
options:
|
|
54
85
|
- Firefox
|
|
@@ -62,10 +93,10 @@ body:
|
|
|
62
93
|
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
63
94
|
render: TypeScript
|
|
64
95
|
- type: checkboxes
|
|
65
|
-
id:
|
|
96
|
+
id: agreed
|
|
66
97
|
attributes:
|
|
67
98
|
label: Code of Conduct
|
|
68
|
-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com
|
|
99
|
+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
|
|
69
100
|
options:
|
|
70
101
|
- label: I agree to follow this project's Code of Conduct
|
|
71
102
|
required: true
|
|
@@ -8,7 +8,7 @@ body:
|
|
|
8
8
|
- type: markdown
|
|
9
9
|
attributes:
|
|
10
10
|
value: |
|
|
11
|
-
Thanks for taking the time to help us improve
|
|
11
|
+
Thanks for taking the time to help us improve the ⚡Storm Docs!
|
|
12
12
|
- type: input
|
|
13
13
|
id: contact
|
|
14
14
|
attributes:
|
|
@@ -16,25 +16,26 @@ body:
|
|
|
16
16
|
description: How can we get in touch with you if we need more info?
|
|
17
17
|
placeholder: ex. email@example.com
|
|
18
18
|
validations:
|
|
19
|
-
required:
|
|
20
|
-
- type:
|
|
19
|
+
required: true
|
|
20
|
+
- type: dropdown
|
|
21
21
|
id: type
|
|
22
22
|
attributes:
|
|
23
23
|
label: Documentation issue
|
|
24
24
|
description: Reason for this request
|
|
25
|
+
multiple: true
|
|
25
26
|
options:
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
|
|
27
|
+
- Reporting a typo
|
|
28
|
+
- Reporting a documentation bug
|
|
29
|
+
- Documentation improvement
|
|
30
|
+
- Documentation feedback
|
|
31
|
+
validations:
|
|
32
|
+
required: true
|
|
31
33
|
- type: input
|
|
32
34
|
id: description
|
|
33
35
|
attributes:
|
|
34
36
|
label: Is there a specific documentation page you are reporting?
|
|
35
37
|
description: Enter the URL or documentation section here.
|
|
36
38
|
placeholder: Enter the URL or documentation section here.
|
|
37
|
-
value: "Enter the URL or documentation section here."
|
|
38
39
|
validations:
|
|
39
40
|
required: true
|
|
40
41
|
- type: textarea
|
|
@@ -43,14 +44,13 @@ body:
|
|
|
43
44
|
label: Additional context or description
|
|
44
45
|
description: Provide any additional details here as needed.
|
|
45
46
|
placeholder: Provide any additional details here as needed.
|
|
46
|
-
value: "Provide any additional details here as needed."
|
|
47
47
|
validations:
|
|
48
48
|
required: false
|
|
49
49
|
- type: checkboxes
|
|
50
|
-
id:
|
|
50
|
+
id: agreed
|
|
51
51
|
attributes:
|
|
52
52
|
label: Code of Conduct
|
|
53
|
-
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com
|
|
53
|
+
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
|
|
54
54
|
options:
|
|
55
55
|
- label: I agree to follow this project's Code of Conduct
|
|
56
56
|
required: true
|
|
@@ -17,14 +17,13 @@ body:
|
|
|
17
17
|
description: How can we get in touch with you if we need more info?
|
|
18
18
|
placeholder: ex. email@example.com
|
|
19
19
|
validations:
|
|
20
|
-
required:
|
|
20
|
+
required: true
|
|
21
21
|
- type: textarea
|
|
22
22
|
id: description
|
|
23
23
|
attributes:
|
|
24
24
|
label: Description
|
|
25
25
|
description: What is the behavior that you would like to see introduced?
|
|
26
26
|
placeholder: What is the behavior that you would like to see introduced?
|
|
27
|
-
value: "What is the behavior that you would like to see introduced?"
|
|
28
27
|
validations:
|
|
29
28
|
required: true
|
|
30
29
|
- type: textarea
|
|
@@ -33,7 +32,6 @@ body:
|
|
|
33
32
|
label: Motivation
|
|
34
33
|
description: Why do you believe this behavior would be beneficial?
|
|
35
34
|
placeholder: Why do you believe this behavior would be beneficial?
|
|
36
|
-
value: "Why do you believe this behavior would be beneficial?"
|
|
37
35
|
validations:
|
|
38
36
|
required: false
|
|
39
37
|
- type: textarea
|
|
@@ -42,7 +40,6 @@ body:
|
|
|
42
40
|
label: Suggested Implementation
|
|
43
41
|
description: How do you imagine this might work?
|
|
44
42
|
placeholder: How do you imagine this might work?
|
|
45
|
-
value: "How do you imagine this might work?"
|
|
46
43
|
validations:
|
|
47
44
|
required: false
|
|
48
45
|
- type: checkboxes
|
|
@@ -51,13 +48,13 @@ body:
|
|
|
51
48
|
label: Contribution
|
|
52
49
|
description: Willingness to contribute
|
|
53
50
|
options:
|
|
54
|
-
- label: I'd be willing to implement this feature ([contributing guide](https://github.com
|
|
51
|
+
- label: I'd be willing to implement this feature ([contributing guide](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CONTRIBUTING.md))
|
|
55
52
|
required: false
|
|
56
53
|
- type: checkboxes
|
|
57
|
-
id:
|
|
54
|
+
id: agreed
|
|
58
55
|
attributes:
|
|
59
56
|
label: Code of Conduct
|
|
60
|
-
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com
|
|
57
|
+
description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CODE_OF_CONDUCT.md)
|
|
61
58
|
options:
|
|
62
59
|
- label: I agree to follow this project's Code of Conduct
|
|
63
60
|
required: true
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Thank you good citizen for your hard work! Please provide the below details describing your PR.
|
|
6
6
|
|
|
7
|
-
**Note:** Please read the [contributing guide](https://github.com
|
|
7
|
+
**Note:** Please read the [contributing guide](https://github.com/<%= organization %>/<%= name %>/blob/main/.github/CONTRIBUTING.md) before raising a pull request.
|
|
8
8
|
|
|
9
9
|
## Pull request type
|
|
10
10
|
|
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
name: "Setup
|
|
1
|
+
name: "Setup Workspace"
|
|
2
2
|
description: "This action install node and cache modules. It uses pnpm as package manager."
|
|
3
3
|
inputs:
|
|
4
|
-
node-version:
|
|
5
|
-
description: "The node version to install (Default: lts)"
|
|
6
|
-
default: "lts/*"
|
|
7
|
-
required: false
|
|
8
4
|
working-directory:
|
|
9
5
|
description: "The working directory of your node package"
|
|
10
6
|
default: "."
|
|
@@ -20,7 +16,7 @@ runs:
|
|
|
20
16
|
- uses: pnpm/action-setup@v2.4.0
|
|
21
17
|
id: pnpm-install
|
|
22
18
|
with:
|
|
23
|
-
version: 8.
|
|
19
|
+
version: 8.7.4
|
|
24
20
|
run_install: false
|
|
25
21
|
|
|
26
22
|
- name: Get pnpm store directory
|
|
@@ -29,14 +25,17 @@ runs:
|
|
|
29
25
|
run: |
|
|
30
26
|
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
|
|
31
27
|
|
|
32
|
-
- uses: actions/
|
|
33
|
-
name: Setup pnpm cache
|
|
28
|
+
- uses: actions/setup-node@v4
|
|
34
29
|
with:
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
30
|
+
registry-url: https://registry.npmjs.org/
|
|
31
|
+
node-version-file: .github/.nvmrc
|
|
32
|
+
cache: pnpm
|
|
33
|
+
cache-dependency-path: pnpm-lock.yaml
|
|
39
34
|
|
|
40
35
|
- name: setup pnpm config registry
|
|
41
36
|
run: pnpm config set registry https://registry.npmjs.org
|
|
42
37
|
shell: bash
|
|
38
|
+
|
|
39
|
+
- name: setup pnpm config registry
|
|
40
|
+
run: pnpm install
|
|
41
|
+
shell: bash
|