@common-stack/generate-plugin 6.0.8-alpha.50 → 6.0.8-alpha.52
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 +8 -0
- package/lib/generators/add-backend/files/package.json +1 -1
- package/lib/generators/add-frontend/templates/package.json +1 -1
- package/lib/generators/add-fullstack/files/package.json +1 -1
- package/lib/generators/add-moleculer/files/package.json +2 -2
- package/package.json +4 -3
- package/src/generators/add-fullstack/files/package.json +1 -1
- package/src/generators/add-moleculer/files/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.0.8-alpha.52](https://github.com/cdmbase/common-stack/compare/v6.0.8-alpha.51...v6.0.8-alpha.52) (2025-02-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
9
|
+
|
|
10
|
+
## [6.0.8-alpha.51](https://github.com/cdmbase/common-stack/compare/v6.0.8-alpha.50...v6.0.8-alpha.51) (2025-02-13)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
13
|
+
|
|
6
14
|
## [6.0.8-alpha.50](https://github.com/cdmbase/common-stack/compare/v6.0.8-alpha.49...v6.0.8-alpha.50) (2025-02-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@apollo/client": "^3.9.0",
|
|
66
66
|
"@babel/runtime": "^7.20.1",
|
|
67
|
-
"@common-stack/server-stack": "6.0.8-alpha.
|
|
67
|
+
"@common-stack/server-stack": "6.0.8-alpha.51",
|
|
68
68
|
"@remix-run/node": "~2.10.1",
|
|
69
69
|
"lodash": "^4.17.15",
|
|
70
70
|
"react": "18.2.0"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"common": "link:./common"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@common-stack/frontend-stack-react": "6.0.8-alpha.
|
|
59
|
+
"@common-stack/frontend-stack-react": "6.0.8-alpha.50",
|
|
60
60
|
"@react-icons/all-files": "^4.1.0",
|
|
61
61
|
"classnames": "^2.2.6",
|
|
62
62
|
"compression": "^1.7.4",
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
"@babel/register": "^7.18.9",
|
|
151
151
|
"@babel/runtime": "^7.20.1",
|
|
152
152
|
"@common-stack/env-list-loader": "6.0.8-alpha.31",
|
|
153
|
-
"@common-stack/generate-plugin": "6.0.8-alpha.
|
|
153
|
+
"@common-stack/generate-plugin": "6.0.8-alpha.51",
|
|
154
154
|
"@common-stack/rollup-vite-utils": "6.0.8-alpha.48",
|
|
155
155
|
"@emotion/babel-plugin": "^11.11.0",
|
|
156
156
|
"@graphql-codegen/add": "^5.0.3",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"@common-stack/client-core": "6.0.8-alpha.31",
|
|
33
33
|
"@common-stack/core": "6.0.8-alpha.31",
|
|
34
34
|
"@common-stack/server-core": "6.0.8-alpha.31",
|
|
35
|
-
"@common-stack/server-stack": "6.0.8-alpha.
|
|
36
|
-
"@common-stack/store-mongo": "6.0.8-alpha.
|
|
35
|
+
"@common-stack/server-stack": "6.0.8-alpha.51",
|
|
36
|
+
"@common-stack/store-mongo": "6.0.8-alpha.51",
|
|
37
37
|
"@container-stack/mailing-api": "5.2.1-alpha.1",
|
|
38
38
|
"helmet": "^3.21.2",
|
|
39
39
|
"react": "18.2.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/generate-plugin",
|
|
3
|
-
"version": "6.0.8-alpha.
|
|
3
|
+
"version": "6.0.8-alpha.52",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./lib/index.mjs",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -14,10 +14,11 @@
|
|
|
14
14
|
"test": "cross-env ENV_FILE=../../config/test/test.env jest",
|
|
15
15
|
"test:debug": "npm test -- --runInBand",
|
|
16
16
|
"test:watch": "npm test -- --watch",
|
|
17
|
+
"vitest": "cross-env ENV_FILE=../../config/test/test.env vitest",
|
|
17
18
|
"watch": "yarn build:lib:watch"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"@common-stack/rollup-vite-utils": "6.0.8-alpha.
|
|
21
|
+
"@common-stack/rollup-vite-utils": "6.0.8-alpha.52",
|
|
21
22
|
"tslib": "^2.3.0"
|
|
22
23
|
},
|
|
23
24
|
"publishConfig": {
|
|
@@ -25,5 +26,5 @@
|
|
|
25
26
|
},
|
|
26
27
|
"executors": "./executors.json",
|
|
27
28
|
"generators": "./generators.json",
|
|
28
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "1f3b93d9bf04f183291f48d19065be04f7bd7b6e"
|
|
29
30
|
}
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
"@babel/register": "^7.18.9",
|
|
151
151
|
"@babel/runtime": "^7.20.1",
|
|
152
152
|
"@common-stack/env-list-loader": "6.0.8-alpha.31",
|
|
153
|
-
"@common-stack/generate-plugin": "6.0.8-alpha.
|
|
153
|
+
"@common-stack/generate-plugin": "6.0.8-alpha.51",
|
|
154
154
|
"@common-stack/rollup-vite-utils": "6.0.8-alpha.48",
|
|
155
155
|
"@emotion/babel-plugin": "^11.11.0",
|
|
156
156
|
"@graphql-codegen/add": "^5.0.3",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"@common-stack/client-core": "6.0.8-alpha.31",
|
|
33
33
|
"@common-stack/core": "6.0.8-alpha.31",
|
|
34
34
|
"@common-stack/server-core": "6.0.8-alpha.31",
|
|
35
|
-
"@common-stack/server-stack": "6.0.8-alpha.
|
|
36
|
-
"@common-stack/store-mongo": "6.0.8-alpha.
|
|
35
|
+
"@common-stack/server-stack": "6.0.8-alpha.51",
|
|
36
|
+
"@common-stack/store-mongo": "6.0.8-alpha.51",
|
|
37
37
|
"@container-stack/mailing-api": "5.2.1-alpha.1",
|
|
38
38
|
"helmet": "^3.21.2",
|
|
39
39
|
"react": "18.2.0",
|