@common-stack/generate-plugin 7.0.4-alpha.6 → 7.0.4-alpha.7
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 +4 -0
- package/lib/generators/add-backend/files/package.json +1 -1
- package/lib/generators/add-frontend/templates/package.json +2 -2
- package/lib/generators/add-fullstack/files/_gitignore +3 -0
- package/lib/generators/add-fullstack/files/package.json +3 -3
- package/lib/generators/add-moleculer/files/package.json +5 -5
- package/lib/generators/add-package/files/browser/package.json +1 -1
- package/lib/generators/add-package/files/server/package.json +3 -3
- package/package.json +2 -2
- package/src/generators/add-backend/files/package.json +1 -1
- package/src/generators/add-frontend/templates/package.json +2 -2
- package/src/generators/add-fullstack/files/_gitignore +3 -0
- package/src/generators/add-fullstack/files/package.json +3 -3
- package/src/generators/add-moleculer/files/package.json +5 -5
- package/src/generators/add-package/files/browser/package.json +1 -1
- package/src/generators/add-package/files/server/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
## [7.0.4-alpha.7](https://github.com/cdmbase/common-stack/compare/v7.0.4-alpha.6...v7.0.4-alpha.7) (2025-03-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
9
|
+
|
|
6
10
|
## [7.0.4-alpha.6](https://github.com/cdmbase/common-stack/compare/v7.0.4-alpha.5...v7.0.4-alpha.6) (2025-03-02)
|
|
7
11
|
|
|
8
12
|
**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": "7.0.4-alpha.
|
|
67
|
+
"@common-stack/server-stack": "7.0.4-alpha.6",
|
|
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": "7.0.4-alpha.
|
|
59
|
+
"@common-stack/frontend-stack-react": "7.0.4-alpha.6",
|
|
60
60
|
"@react-icons/all-files": "^4.1.0",
|
|
61
61
|
"classnames": "^2.2.6",
|
|
62
62
|
"compression": "^1.7.4",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@cdmbase/vite-plugin-i18next-loader": "^2.0.12",
|
|
84
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
84
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.6",
|
|
85
85
|
"@remix-run/dev": "~2.10.1",
|
|
86
86
|
"@remix-run/serve": "~2.10.1",
|
|
87
87
|
"cross-env": "^7.0.3",
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"devpublish:push": "yarn predevpublish && git push origin $PUBLISH_BRANCH && yarn postdevpublish",
|
|
53
53
|
"format": "yarn lint --fix",
|
|
54
54
|
"format:md": "yarn lint:md --fix",
|
|
55
|
-
"pregenerateGraphql": " node --experimental-modules tools/codegenGenerator.mjs",
|
|
56
55
|
"generateGraphql": "graphql-codegen-esm",
|
|
57
56
|
"postgenerateGraphql": "lerna run watch --scope=common",
|
|
58
57
|
"generateGraphql:watch": "yarn generateGraphql -- --watch",
|
|
@@ -77,6 +76,7 @@
|
|
|
77
76
|
"publish:forceManual": "yarn lernapublish --force-publish=*",
|
|
78
77
|
"publish:push": "yarn prelernapublish && git push origin publish && yarn postlernapublish",
|
|
79
78
|
"push-develop": "git push origin develop",
|
|
79
|
+
"regenerateGraphql": " node --experimental-modules tools/codegenGenerator.mjs",
|
|
80
80
|
"setBranchEnv": "cross-env REPOSITORY_BRANCH=${1:-$REPOSITORY_BRANCH} PUBLISH_BRANCH=${2:-$PUBLISH_BRANCH}",
|
|
81
81
|
"sort-packages": "node tools/sortPackageJson.mjs && prettier --write package.json **/**/*/package.json **/*/package.json",
|
|
82
82
|
"start": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env yarn startWeb",
|
|
@@ -145,8 +145,8 @@
|
|
|
145
145
|
"@babel/register": "^7.18.9",
|
|
146
146
|
"@babel/runtime": "^7.20.1",
|
|
147
147
|
"@common-stack/env-list-loader": "7.0.4-alpha.0",
|
|
148
|
-
"@common-stack/generate-plugin": "7.0.4-alpha.
|
|
149
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
148
|
+
"@common-stack/generate-plugin": "7.0.4-alpha.6",
|
|
149
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.6",
|
|
150
150
|
"@emotion/babel-plugin": "^11.11.0",
|
|
151
151
|
"@graphql-codegen/add": "^5.0.3",
|
|
152
152
|
"@graphql-codegen/cli": "^5.0.4",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"common": "link:./common"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@common-stack/client-core": "7.0.4-alpha.
|
|
33
|
-
"@common-stack/core": "7.0.4-alpha.
|
|
34
|
-
"@common-stack/server-core": "7.0.4-alpha.
|
|
35
|
-
"@common-stack/server-stack": "7.0.4-alpha.
|
|
36
|
-
"@common-stack/store-mongo": "7.0.4-alpha.
|
|
32
|
+
"@common-stack/client-core": "7.0.4-alpha.6",
|
|
33
|
+
"@common-stack/core": "7.0.4-alpha.6",
|
|
34
|
+
"@common-stack/server-core": "7.0.4-alpha.6",
|
|
35
|
+
"@common-stack/server-stack": "7.0.4-alpha.6",
|
|
36
|
+
"@common-stack/store-mongo": "7.0.4-alpha.6",
|
|
37
37
|
"@container-stack/mailing-api": "5.2.1-alpha.1",
|
|
38
38
|
"helmet": "^3.21.2",
|
|
39
39
|
"react": "18.2.0",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@apollo/client": ">=3.0.0",
|
|
64
64
|
"@cdm-logger/server": ">=9.0.3",
|
|
65
|
-
"@common-stack/core": "7.0.4-alpha.
|
|
66
|
-
"@common-stack/server-core": "7.0.4-alpha.
|
|
67
|
-
"@common-stack/store-mongo": "7.0.4-alpha.
|
|
65
|
+
"@common-stack/core": "7.0.4-alpha.6",
|
|
66
|
+
"@common-stack/server-core": "7.0.4-alpha.6",
|
|
67
|
+
"@common-stack/store-mongo": "7.0.4-alpha.6",
|
|
68
68
|
"@container-stack/mailing-api": ">=0.0.35-alpha.1",
|
|
69
69
|
"@vscode-alt/monaco-editor": "^0.21.4",
|
|
70
70
|
"inversify": "^5.0.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/generate-plugin",
|
|
3
|
-
"version": "7.0.4-alpha.
|
|
3
|
+
"version": "7.0.4-alpha.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./lib/index.mjs",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
},
|
|
27
27
|
"executors": "./executors.json",
|
|
28
28
|
"generators": "./generators.json",
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "7e104c5fa18cbce2c32cd60de26b45a94f387081"
|
|
30
30
|
}
|
|
@@ -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": "7.0.4-alpha.
|
|
67
|
+
"@common-stack/server-stack": "7.0.4-alpha.6",
|
|
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": "7.0.4-alpha.
|
|
59
|
+
"@common-stack/frontend-stack-react": "7.0.4-alpha.6",
|
|
60
60
|
"@react-icons/all-files": "^4.1.0",
|
|
61
61
|
"classnames": "^2.2.6",
|
|
62
62
|
"compression": "^1.7.4",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@cdmbase/vite-plugin-i18next-loader": "^2.0.12",
|
|
84
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
84
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.6",
|
|
85
85
|
"@remix-run/dev": "~2.10.1",
|
|
86
86
|
"@remix-run/serve": "~2.10.1",
|
|
87
87
|
"cross-env": "^7.0.3",
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"devpublish:push": "yarn predevpublish && git push origin $PUBLISH_BRANCH && yarn postdevpublish",
|
|
53
53
|
"format": "yarn lint --fix",
|
|
54
54
|
"format:md": "yarn lint:md --fix",
|
|
55
|
-
"pregenerateGraphql": " node --experimental-modules tools/codegenGenerator.mjs",
|
|
56
55
|
"generateGraphql": "graphql-codegen-esm",
|
|
57
56
|
"postgenerateGraphql": "lerna run watch --scope=common",
|
|
58
57
|
"generateGraphql:watch": "yarn generateGraphql -- --watch",
|
|
@@ -77,6 +76,7 @@
|
|
|
77
76
|
"publish:forceManual": "yarn lernapublish --force-publish=*",
|
|
78
77
|
"publish:push": "yarn prelernapublish && git push origin publish && yarn postlernapublish",
|
|
79
78
|
"push-develop": "git push origin develop",
|
|
79
|
+
"regenerateGraphql": " node --experimental-modules tools/codegenGenerator.mjs",
|
|
80
80
|
"setBranchEnv": "cross-env REPOSITORY_BRANCH=${1:-$REPOSITORY_BRANCH} PUBLISH_BRANCH=${2:-$PUBLISH_BRANCH}",
|
|
81
81
|
"sort-packages": "node tools/sortPackageJson.mjs && prettier --write package.json **/**/*/package.json **/*/package.json",
|
|
82
82
|
"start": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env yarn startWeb",
|
|
@@ -145,8 +145,8 @@
|
|
|
145
145
|
"@babel/register": "^7.18.9",
|
|
146
146
|
"@babel/runtime": "^7.20.1",
|
|
147
147
|
"@common-stack/env-list-loader": "7.0.4-alpha.0",
|
|
148
|
-
"@common-stack/generate-plugin": "7.0.4-alpha.
|
|
149
|
-
"@common-stack/rollup-vite-utils": "7.0.4-alpha.
|
|
148
|
+
"@common-stack/generate-plugin": "7.0.4-alpha.6",
|
|
149
|
+
"@common-stack/rollup-vite-utils": "7.0.4-alpha.6",
|
|
150
150
|
"@emotion/babel-plugin": "^11.11.0",
|
|
151
151
|
"@graphql-codegen/add": "^5.0.3",
|
|
152
152
|
"@graphql-codegen/cli": "^5.0.4",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"common": "link:./common"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@common-stack/client-core": "7.0.4-alpha.
|
|
33
|
-
"@common-stack/core": "7.0.4-alpha.
|
|
34
|
-
"@common-stack/server-core": "7.0.4-alpha.
|
|
35
|
-
"@common-stack/server-stack": "7.0.4-alpha.
|
|
36
|
-
"@common-stack/store-mongo": "7.0.4-alpha.
|
|
32
|
+
"@common-stack/client-core": "7.0.4-alpha.6",
|
|
33
|
+
"@common-stack/core": "7.0.4-alpha.6",
|
|
34
|
+
"@common-stack/server-core": "7.0.4-alpha.6",
|
|
35
|
+
"@common-stack/server-stack": "7.0.4-alpha.6",
|
|
36
|
+
"@common-stack/store-mongo": "7.0.4-alpha.6",
|
|
37
37
|
"@container-stack/mailing-api": "5.2.1-alpha.1",
|
|
38
38
|
"helmet": "^3.21.2",
|
|
39
39
|
"react": "18.2.0",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@apollo/client": ">=3.0.0",
|
|
64
64
|
"@cdm-logger/server": ">=9.0.3",
|
|
65
|
-
"@common-stack/core": "7.0.4-alpha.
|
|
66
|
-
"@common-stack/server-core": "7.0.4-alpha.
|
|
67
|
-
"@common-stack/store-mongo": "7.0.4-alpha.
|
|
65
|
+
"@common-stack/core": "7.0.4-alpha.6",
|
|
66
|
+
"@common-stack/server-core": "7.0.4-alpha.6",
|
|
67
|
+
"@common-stack/store-mongo": "7.0.4-alpha.6",
|
|
68
68
|
"@container-stack/mailing-api": ">=0.0.35-alpha.1",
|
|
69
69
|
"@vscode-alt/monaco-editor": "^0.21.4",
|
|
70
70
|
"inversify": "^5.0.1",
|