Skip to content

Commit 97d260d

Browse files
authored
Merge pull request #208 from tkskto/develop
v0.5.2
2 parents 2a85148 + 57a5a97 commit 97d260d

File tree

10 files changed

+2382
-2679
lines changed

10 files changed

+2382
-2679
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: [14.x, 16.x]
16+
node-version: [14.x, 16.x, 18.x]
1717

1818
steps:
1919
- uses: actions/checkout@v3

CHANGELOG.md

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

3+
## 0.5.2
4+
5+
### Chores
6+
7+
- \#210 update dependency
8+
- `commander` to v9.4.1
9+
- `globby` to v13.1.2
10+
- `vue-eslint-parser` to v9.1.0
11+
- `ws` to v8.11.0
12+
313
## 0.5.1
414

515
### Chores

jest.config.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
export default {
22
verbose: true,
3-
globals: {
4-
'ts-jest': {
5-
useESM: true,
6-
},
7-
},
83
preset: 'ts-jest/presets/default-esm',
94
testMatch: [
105
'**/test/specs/*.test.ts',
116
],
127
transform: {
13-
'^.+\\.ts$': 'ts-jest',
8+
'^.+\\.ts$': ['ts-jest', {
9+
useESM: true,
10+
}],
1411
},
1512
};

0 commit comments

Comments
 (0)