@qlover/create-app 0.3.6 → 0.3.8
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 +30 -0
- package/dist/index.js +2419 -0
- package/package.json +6 -6
- package/dist/index.cjs +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @qlover/create-app
|
|
2
2
|
|
|
3
|
+
## 0.3.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
#### 🐞 Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **create-app:** update dependencies and tsup configuration for @qlover/create-app ([4a5fa84](https://github.com/qlover/fe-base/commit/4a5fa846ae6c3df97c73df5e594c3adb4fb7cda9)) ([#424](https://github.com/qlover/fe-base/pull/424))
|
|
10
|
+
|
|
11
|
+
- Reorganized package.json to move "commander" and "ora" to dependencies from devDependencies, ensuring they are included in the production build.
|
|
12
|
+
- Updated tsup.config.ts to enhance build configuration by defining external modules and adjusting minification and splitting settings for improved performance.
|
|
13
|
+
|
|
14
|
+
## 0.3.7
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
#### ✨ Features
|
|
19
|
+
|
|
20
|
+
- add tabify method to format commit body in GitChangelog ([5670b78](https://github.com/qlover/fe-base/commit/5670b78b1cb06a730d2cbd7ac1f5bd7e9e7df490)) ([#422](https://github.com/qlover/fe-base/pull/422))
|
|
21
|
+
|
|
22
|
+
- Introduced a new `tabify` method to format the body of commit messages by adding indentation.
|
|
23
|
+
- Updated `parseCommitlint` to utilize the `tabify` method for improved body formatting.
|
|
24
|
+
|
|
25
|
+
#### 🐞 Bug Fixes
|
|
26
|
+
|
|
27
|
+
- update @qlover/create-app to use ES module format ([5e9dffb](https://github.com/qlover/fe-base/commit/5e9dffb4d9e54dc2457588a81b11159820196067)) ([#422](https://github.com/qlover/fe-base/pull/422))
|
|
28
|
+
|
|
29
|
+
- Changed the entry point in package.json from "dist/index.cjs" to "dist/index.js" to align with ES module standards.
|
|
30
|
+
- Updated tsup.config.ts to output in ES module format instead of CommonJS.
|
|
31
|
+
- Refactored index.ts to use fileURLToPath for resolving the root path, enhancing compatibility with ES modules.
|
|
32
|
+
|
|
3
33
|
## 0.3.6
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|