Skip to content

Commit

Permalink
Merge pull request #359 from tkskto/develop
Browse files Browse the repository at this point in the history
v0.9.0
  • Loading branch information
tkskto committed May 28, 2024
2 parents bf8ad7c + 479dcef commit 10a8d2d
Show file tree
Hide file tree
Showing 35 changed files with 4,693 additions and 4,180 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_size = 4
insert_final_newline = true

[test/snapshots/**/*.json]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# publish for npm package.
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
Expand All @@ -20,7 +20,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# publish for GitHub Package.
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
registry-url: 'https://npm.pkg.github.com'
- run: npm publish
Expand Down
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm exec lint-staged
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 0.9.0

### Fixes

- fixed parsing process of defineProps \#308 from @Disservin
- add support tsconfig path aliases \#309 from @Disservin

Thank you for your issue!

### Chores

- \#300 `mkdirp` to v3.0.1
- \#303 `vue-eslint-parser` to v9.4.2
- \#336 `globby` to v14.0.1
- \#345 `ws` to v8.17.0
- \#348 `ejs` to v3.1.10
- \#352 `commander` to v12.1.0

## 0.8.0

### enhancement
Expand Down
Loading

0 comments on commit 10a8d2d

Please sign in to comment.