@qlover/create-app 0.1.16 → 0.1.20
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 +14 -11
- package/configs/_common/.github/workflows/general-check.yml +1 -1
- package/configs/_common/.github/workflows/release.yml.template +2 -2
- package/configs/_common/package.json.template +1 -1
- package/package.json +4 -4
- package/templates/node-lib/package.json +1 -1
- package/templates/pack-app/package.json +1 -1
- package/templates/react-app/.env.local +24 -0
- package/templates/react-app/README.md +0 -1
- package/templates/react-app/pnpm-lock.yaml +0 -6043
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
|
-
## 0.1.
|
|
1
|
+
## 0.1.20
|
|
2
2
|
|
|
3
3
|
### Patch Changes
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
#### ✨ Features
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- add pnpm install ([#248](https://github.com/qlover/fe-base/issues/248)) ([e1e9f48](https://github.com/qlover/fe-base/commit/e1e9f4841365c51e9b8ea7b01ac6fc70e35eec37))
|
|
9
|
-
- release publish npm ([#327](https://github.com/qlover/fe-base/issues/327)) ([fa26d04](https://github.com/qlover/fe-base/commit/fa26d04eab2fa1ea4baa05c4d3502e5a873d5c8c))
|
|
7
|
+
- implement GitChangelog for improved changelog generation (#351)
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
- Introduced a new GitChangelog class to facilitate the generation of changelogs based on Git commit history.
|
|
10
|
+
- Added interfaces for PRCommit, CommitInfo, and FlatCommit to structure commit data.
|
|
11
|
+
- Updated Changelog plugin to utilize GitChangelog for fetching and formatting PR commits, replacing the previous conventional-changelog implementation.
|
|
12
|
+
- Enhanced default options for changelog types and formatting.
|
|
12
13
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
#### 🐞 Bug Fixes
|
|
15
|
+
|
|
16
|
+
- add option to push changed labels to release PRs in workflow (#353)
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @qlover/fe-corekit@1.2.8
|
|
20
|
+
- @qlover/scripts-context@0.0.14
|
|
18
21
|
|
|
19
22
|
## 0.1.15 (2025-04-17)
|
|
20
23
|
|
|
@@ -33,7 +33,7 @@ jobs:
|
|
|
33
33
|
- name: Install Node.js
|
|
34
34
|
uses: actions/setup-node@v2
|
|
35
35
|
with:
|
|
36
|
-
node-version: '18.
|
|
36
|
+
node-version: '18.20.0'
|
|
37
37
|
|
|
38
38
|
- name: Install Pnpm
|
|
39
39
|
run: |
|
|
@@ -83,7 +83,7 @@ jobs:
|
|
|
83
83
|
- name: Install Node.js
|
|
84
84
|
uses: actions/setup-node@v2
|
|
85
85
|
with:
|
|
86
|
-
node-version: '18.
|
|
86
|
+
node-version: '18.20.0'
|
|
87
87
|
|
|
88
88
|
- name: Install Pnpm
|
|
89
89
|
run: |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qlover/create-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@qlover/env-loader": "^0.0.
|
|
46
|
+
"@qlover/env-loader": "^0.0.4"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@qlover/fe-corekit": "^1.2.
|
|
50
|
-
"@qlover/scripts-context": "^0.0.
|
|
49
|
+
"@qlover/fe-corekit": "^1.2.5",
|
|
50
|
+
"@qlover/scripts-context": "^0.0.11",
|
|
51
51
|
"commander": "^13.1.0",
|
|
52
52
|
"ignore": "^7.0.3",
|
|
53
53
|
"inquirer": "^12.3.2",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@qlover/fe-scripts": "latest",
|
|
34
34
|
"@qlover/fe-standard": "workspace:*",
|
|
35
|
-
"@qlover/fe-
|
|
35
|
+
"@qlover/fe-corekit": "latest",
|
|
36
36
|
"@qlover/fe-release": "latest",
|
|
37
37
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
38
38
|
"@rollup/plugin-json": "^6.1.0",
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
NODE_ENV=local
|
|
2
|
+
|
|
3
|
+
# ci
|
|
4
|
+
NPM_TOKEN=
|
|
5
|
+
GITHUB_TOKEN=
|
|
6
|
+
|
|
7
|
+
# fe-scripts
|
|
8
|
+
FE_RELEASE_BRANCH=master
|
|
9
|
+
FE_RELEASE=false
|
|
10
|
+
FE_RELEASE_ENV=production
|
|
11
|
+
|
|
12
|
+
# ===== build
|
|
13
|
+
VITE_PUBLIC_PATH=
|
|
14
|
+
VITE_SERVER_PORT=3200
|
|
15
|
+
|
|
16
|
+
# ===== app config
|
|
17
|
+
VITE_USER_TOKEN_STORAGE_KEY=fe_user_token
|
|
18
|
+
VITE_OPEN_AI_MODELS='["gpt-4o-mini","gpt-3.5-turbo","gpt-3.5-turbo-2","gpt-4","gpt-4-32k"]'
|
|
19
|
+
VITE_OPEN_AI_BASE_URL=https://openai-proxy.brain.loocaa.com:1443/v1/
|
|
20
|
+
VITE_OPEN_AI_TOKEN=DlJYSkMVj1x4zoe8jZnjvxfHG6z5yGxK
|
|
21
|
+
VITE_OPEN_AI_TOKEN_PREFIX=Bearer
|
|
22
|
+
VITE_OPEN_AI_REQUIRE_TOKEN=true
|
|
23
|
+
VITE_LOGIN_USER=admin
|
|
24
|
+
VITE_LOGIN_PASSWORD=123456
|