Skip to content

Commit 10a8d2d

Browse files
authored
Merge pull request #359 from tkskto/develop
v0.9.0
2 parents bf8ad7c + 479dcef commit 10a8d2d

35 files changed

+4693
-4180
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ root = true
33
[*]
44
charset = utf-8
55
end_of_line = lf
6-
indent_size = 2
6+
indent_size = 4
77
insert_final_newline = true
88

99
[test/snapshots/**/*.json]

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: [14.x, 16.x, 18.x]
16+
node-version: [18.x, 20.x]
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- run: npm install

.github/workflows/publish-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
# publish for npm package.
12-
- uses: actions/setup-node@v3
12+
- uses: actions/setup-node@v4
1313
with:
1414
node-version: '18.x'
1515
registry-url: 'https://registry.npmjs.org'
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2222
# publish for GitHub Package.
23-
- uses: actions/setup-node@v3
23+
- uses: actions/setup-node@v4
2424
with:
2525
registry-url: 'https://npm.pkg.github.com'
2626
- run: npm publish

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
npm exec lint-staged

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 0.9.0
4+
5+
### Fixes
6+
7+
- fixed parsing process of defineProps \#308 from @Disservin
8+
- add support tsconfig path aliases \#309 from @Disservin
9+
10+
Thank you for your issue!
11+
12+
### Chores
13+
14+
- \#300 `mkdirp` to v3.0.1
15+
- \#303 `vue-eslint-parser` to v9.4.2
16+
- \#336 `globby` to v14.0.1
17+
- \#345 `ws` to v8.17.0
18+
- \#348 `ejs` to v3.1.10
19+
- \#352 `commander` to v12.1.0
20+
321
## 0.8.0
422

523
### enhancement

0 commit comments

Comments
 (0)