Skip to content

Commit

Permalink
chore(projects): release v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
honghuangdc committed Jan 18, 2024
1 parent 7bf1a1f commit b78c4c3
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 13 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Changelog


## [v0.3.3](https://github.com/soybeanjs/elegent-router/compare/v0.3.2...v0.3.3) (24-01-19)

###    🐞 Bug Fixes

- **projects**: fix customRoute generate repeat routes &nbsp;-&nbsp; by @honghuangdc [<samp>(7bf1a)</samp>](https://github.com/soybeanjs/elegent-router/commit/7bf1a1f)

### &nbsp;&nbsp;&nbsp;💅 Refactors

- **projects**: use eslint flat config &nbsp;-&nbsp; by @honghuangdc [<samp>(5f7bc)</samp>](https://github.com/soybeanjs/elegent-router/commit/5f7bc70)

### &nbsp;&nbsp;&nbsp;🏡 Chore

- **deps**: update deps &nbsp;-&nbsp; by @honghuangdc [<samp>(24df6)</samp>](https://github.com/soybeanjs/elegent-router/commit/24df68d)

### &nbsp;&nbsp;&nbsp;❤️ Contributors

[![honghuangdc](https://github.com/honghuangdc.png?size=48)](https://github.com/honghuangdc)&nbsp;&nbsp;

## [v0.3.2](https://github.com/soybeanjs/elegent-router/compare/v0.3.1...v0.3.2) (24-01-16)

### &nbsp;&nbsp;&nbsp;🐞 Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion examples/template-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "template-vue",
"type": "module",
"version": "0.3.2",
"version": "0.3.3",
"private": true,
"scripts": {
"build": "run-s type-check build-only",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "elegant-router",
"type": "module",
"version": "0.3.2",
"version": "0.3.3",
"private": true,
"packageManager": "pnpm@8.10.5",
"description": "A plugin to create router elegantly",
Expand Down
6 changes: 4 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elegant-router/core",
"version": "0.3.2",
"version": "0.3.3",
"description": "A plugin to create router elegantly",
"author": {
"name": "Soybean",
Expand Down Expand Up @@ -28,7 +28,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "pnpm typecheck && unbuild",
"stub": "unbuild --stub",
Expand Down
6 changes: 4 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elegant-router/react",
"version": "0.3.2",
"version": "0.3.3",
"private": true,
"description": "A React Router plugin to create router elegantly",
"author": {
Expand Down Expand Up @@ -29,7 +29,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "pnpm typecheck && unbuild",
"typecheck": "tsc --noEmit --skipLibCheck"
Expand Down
6 changes: 4 additions & 2 deletions packages/solid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elegant-router/solid",
"version": "0.3.2",
"version": "0.3.3",
"private": true,
"description": "A Solid Router plugin to create router elegantly",
"author": {
Expand Down Expand Up @@ -29,7 +29,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "pnpm typecheck && unbuild",
"typecheck": "tsc --noEmit --skipLibCheck"
Expand Down
6 changes: 4 additions & 2 deletions packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elegant-router/svelte",
"version": "0.3.2",
"version": "0.3.3",
"private": true,
"description": "A Svelte Router plugin to create router elegantly",
"author": {
Expand Down Expand Up @@ -29,7 +29,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "pnpm typecheck && unbuild",
"typecheck": "tsc --noEmit --skipLibCheck"
Expand Down
11 changes: 8 additions & 3 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elegant-router/vue",
"version": "0.3.2",
"version": "0.3.3",
"description": "A Vue3 Router plugin to create router elegantly",
"author": {
"name": "Soybean",
Expand Down Expand Up @@ -52,10 +52,15 @@
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": ["./dist/*", "./*"]
"*": [
"./dist/*",
"./*"
]
}
},
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "pnpm typecheck && pnpm unbuild",
"stub": "unbuild --stub",
Expand Down

0 comments on commit b78c4c3

Please sign in to comment.