Skip to content

Commit cd234c3

Browse files
committed
chore(projects): release v1.0.0-beta.4
1 parent 563ca9e commit cd234c3

File tree

8 files changed

+32
-10
lines changed

8 files changed

+32
-10
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Changelog
22

33

4+
## [v1.0.0-beta.4](https://github.com/soybeanjs/cli/compare/v1.0.0-beta.3...v1.0.0-beta.4) (23-12-11)
5+
6+
###    🐞 Bug Fixes
7+
8+
- **projects**: fix bin in package.json &nbsp;-&nbsp; by @honghuangdc [<samp>(563ca)</samp>](https://github.com/soybeanjs/cli/commit/563ca9e)
9+
10+
### &nbsp;&nbsp;&nbsp;🎨 Styles
11+
12+
- **projects**: format code &nbsp;-&nbsp; by @honghuangdc [<samp>(51f39)</samp>](https://github.com/soybeanjs/cli/commit/51f39ca)
13+
14+
### &nbsp;&nbsp;&nbsp;❤️ Contributors
15+
16+
[![honghuangdc](https://github.com/honghuangdc.png?size=48)](https://github.com/honghuangdc)&nbsp;&nbsp;
17+
418
## [v1.0.0-beta.3](https://github.com/soybeanjs/cli/compare/v1.0.0-beta.2...v1.0.0-beta.3) (23-12-10)
519

620
### &nbsp;&nbsp;&nbsp;📖 Documentation

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@soybeanjs/cli",
33
"type": "module",
4-
"version": "1.0.0-beta.3",
4+
"version": "1.0.0-beta.4",
55
"packageManager": "[email protected]",
66
"description": "SoybeanJS's command line tools",
77
"author": {
@@ -34,7 +34,9 @@
3434
"main": "dist/index.cjs",
3535
"module": "dist/index.mjs",
3636
"types": "dist/index.d.ts",
37-
"files": ["dist"],
37+
"files": [
38+
"dist"
39+
],
3840
"scripts": {
3941
"build": "unbuild && pnpm build-pkg",
4042
"build-pkg": "pnpm -r --filter='./packages/*' run build",

packages/create-soybean/package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-soybean",
3-
"version": "1.0.0-beta.3",
3+
"version": "1.0.0-beta.4",
44
"description": "SoybeanJS's command line to create different project templates",
55
"author": {
66
"name": "Soybean",
@@ -22,7 +22,11 @@
2222
"create-soybean": "dist/index.mjs",
2323
"create-soy": "dist/index.mjs"
2424
},
25-
"files": ["dist", "template-ts-lib", "template-vue"],
25+
"files": [
26+
"dist",
27+
"template-ts-lib",
28+
"template-vue"
29+
],
2630
"scripts": {
2731
"build": "pnpm typecheck && pnpm build-only",
2832
"build-only": "unbuild",
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "template-react-native",
33
"type": "module",
4-
"version": "1.0.0-beta.3",
4+
"version": "1.0.0-beta.4",
55
"scripts": {}
66
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "template-react",
33
"type": "module",
4-
"version": "1.0.0-beta.3",
4+
"version": "1.0.0-beta.4",
55
"scripts": {}
66
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "template-solid",
33
"type": "module",
4-
"version": "1.0.0-beta.3",
4+
"version": "1.0.0-beta.4",
55
"scripts": {}
66
}

packages/create-soybean/template-ts-lib/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ts-lib-starter",
33
"type": "module",
4-
"version": "1.0.0-beta.3",
4+
"version": "1.0.0-beta.4",
55
"private": true,
66
"packageManager": "[email protected]",
77
"exports": {
@@ -14,7 +14,9 @@
1414
"main": "dist/index.cjs",
1515
"module": "dist/index.mjs",
1616
"types": "dist/index.d.ts",
17-
"files": ["dist"],
17+
"files": [
18+
"dist"
19+
],
1820
"scripts": {
1921
"build": "unbuild",
2022
"cleanup": "soy cleanup",

packages/create-soybean/template-vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "template-vue",
33
"type": "module",
4-
"version": "1.0.0-beta.3",
4+
"version": "1.0.0-beta.4",
55
"private": true,
66
"packageManager": "[email protected]",
77
"scripts": {

0 commit comments

Comments
 (0)