@qlover/create-app 0.1.17 → 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
CHANGED
|
@@ -1,26 +1,23 @@
|
|
|
1
|
-
## 0.1.
|
|
2
|
-
|
|
3
|
-
## 0.1.17
|
|
1
|
+
## 0.1.20
|
|
4
2
|
|
|
5
3
|
### Patch Changes
|
|
6
4
|
|
|
7
|
-
|
|
5
|
+
#### ✨ Features
|
|
8
6
|
|
|
9
|
-
|
|
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
|
-
- add pnpm install ([#248](https://github.com/qlover/fe-base/issues/248)) ([e1e9f48](https://github.com/qlover/fe-base/commit/e1e9f4841365c51e9b8ea7b01ac6fc70e35eec37))
|
|
15
|
-
- release publish npm ([#327](https://github.com/qlover/fe-base/issues/327)) ([fa26d04](https://github.com/qlover/fe-base/commit/fa26d04eab2fa1ea4baa05c4d3502e5a873d5c8c))
|
|
14
|
+
#### 🐞 Bug Fixes
|
|
16
15
|
|
|
17
|
-
|
|
16
|
+
- add option to push changed labels to release PRs in workflow (#353)
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
- optz create-app deep ([#244](https://github.com/qlover/fe-base/issues/244)) ([c0a89ef](https://github.com/qlover/fe-base/commit/c0a89ef5dc2f3cc216b4fc1968b1b626c58947d5))
|
|
23
|
-
- template context ([#241](https://github.com/qlover/fe-base/issues/241)) ([9fb3046](https://github.com/qlover/fe-base/commit/9fb3046e3e67c02e5fe4fea81a9a3ef8422e3013))
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @qlover/fe-corekit@1.2.8
|
|
20
|
+
- @qlover/scripts-context@0.0.14
|
|
24
21
|
|
|
25
22
|
## 0.1.15 (2025-04-17)
|
|
26
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,10 +43,10 @@
|
|
|
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.
|
|
49
|
+
"@qlover/fe-corekit": "^1.2.5",
|
|
50
50
|
"@qlover/scripts-context": "^0.0.11",
|
|
51
51
|
"commander": "^13.1.0",
|
|
52
52
|
"ignore": "^7.0.3",
|
|
@@ -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
|