Skip to content

Commit 8e55a3b

Browse files
committed
release: 0.1.0-alpha.1
1 parent 21c27a3 commit 8e55a3b

File tree

3 files changed

+54
-38
lines changed

3 files changed

+54
-38
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# CHANGELOG
22

3-
# 0.1.0-alpha.0 (2022-12-22)
3+
# [0.1.0-alpha.1](https://github.com/jwcjs/core/compare/0.1.0-alpha.0...0.1.0-alpha.1) (2023-01-29)
4+
5+
6+
### Bug Fixes
7+
8+
* **core:** missing checking vnode type in creating, fixed [#19](https://github.com/jwcjs/core/issues/19) ([#20](https://github.com/jwcjs/core/issues/20)) ([6e25dc9](https://github.com/jwcjs/core/commit/6e25dc91606c56348d6339d23b09a0df5d086a64))
9+
* root package, init before build packages ([#21](https://github.com/jwcjs/core/issues/21)) ([a90296f](https://github.com/jwcjs/core/commit/a90296f7bb7d725991dfac37e835368eeb27b877))
10+
* style attribute ([#25](https://github.com/jwcjs/core/issues/25)) ([21c27a3](https://github.com/jwcjs/core/commit/21c27a3b514c2a96d64bdd2db65638dabb9bdbd1))
11+
12+
13+
### Performance Improvements
14+
15+
* **core:** export all packages in root ([98995ee](https://github.com/jwcjs/core/commit/98995ee8b250cb58d60295d4f05f714d4db6d910))
16+
17+
18+
19+
# [0.1.0-alpha.0](https://github.com/jwcjs/core/compare/3aac67f35915f92e2a3a27b16a014dacaa662caa...0.1.0-alpha.0) (2022-12-22)
420

521

622
### Bug Fixes

package.json

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
{
2-
"name": "@jwcjs/monorepo",
3-
"author": "wibus-wee <wibus@qq.com>",
4-
"version": "0.1.0-alpha.0",
5-
"license": "MIT",
6-
"private": true,
7-
"scripts": {
8-
"lint": "eslint ./packages",
9-
"build:core": "pnpm -C packages/core run build",
10-
"build-packages": "npm run build:core",
11-
"bump": "bump-monorepo",
12-
"prepare": "npm run build-packages"
13-
},
14-
"devDependencies": {
15-
"@types/node": "^18.11.17",
16-
"@typescript-eslint/eslint-plugin": "^5.46.1",
17-
"@typescript-eslint/parser": "^5.46.1",
18-
"@wibus/bump-monorepo": "1.0.0-alpha.2",
19-
"eslint": "^8.29.0",
20-
"eslint-config-prettier": "^8.5.0",
21-
"eslint-plugin-prettier": "^4.2.1",
22-
"husky": "^8.0.2",
23-
"lint-staged": "^13.1.0",
24-
"pnpm": "^7.18.2",
25-
"prettier": "^2.8.1",
26-
"rimraf": "^4.0.0",
27-
"tslib": "^2.4.1",
28-
"typescript": "^4.9.4"
29-
},
30-
"bump": {
31-
"activePackages": [
32-
"core"
33-
],
34-
"publish": true,
35-
"message": "release: %s"
36-
}
37-
}
2+
"name": "@jwcjs/monorepo",
3+
"author": "wibus-wee <wibus@qq.com>",
4+
"version": "0.1.0-alpha.1",
5+
"license": "MIT",
6+
"private": true,
7+
"scripts": {
8+
"lint": "eslint ./packages",
9+
"build:core": "pnpm -C packages/core run build",
10+
"build-packages": "npm run build:core",
11+
"bump": "bump-monorepo",
12+
"prepare": "npm run build-packages"
13+
},
14+
"devDependencies": {
15+
"@types/node": "^18.11.17",
16+
"@typescript-eslint/eslint-plugin": "^5.46.1",
17+
"@typescript-eslint/parser": "^5.46.1",
18+
"@wibus/bump-monorepo": "1.0.0-alpha.2",
19+
"eslint": "^8.29.0",
20+
"eslint-config-prettier": "^8.5.0",
21+
"eslint-plugin-prettier": "^4.2.1",
22+
"husky": "^8.0.2",
23+
"lint-staged": "^13.1.0",
24+
"pnpm": "^7.18.2",
25+
"prettier": "^2.8.1",
26+
"rimraf": "^4.0.0",
27+
"tslib": "^2.4.1",
28+
"typescript": "^4.9.4"
29+
},
30+
"bump": {
31+
"activePackages": [
32+
"core"
33+
],
34+
"publish": true,
35+
"message": "release: %s"
36+
}
37+
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jwcjs",
3-
"version": "0.1.0-alpha.0",
3+
"version": "0.1.0-alpha.1",
44
"description": "Jwc.js is a JavaScript framework for using JSX to write web components on the web.",
55
"main": "./dist/index.js",
66
"exports": {

0 commit comments

Comments
 (0)