Skip to content

Commit 2a85148

Browse files
authored
Merge pull request #191 from tkskto/develop
v0.5.1
2 parents 4443fff + e04b4ad commit 2a85148

File tree

12 files changed

+993
-998
lines changed

12 files changed

+993
-998
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
node-version: [14.x, 16.x]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v2
21+
uses: actions/setup-node@v3
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@v2
10+
- uses: actions/checkout@v3
1111
# publish for npm package.
12-
- uses: actions/setup-node@v2
12+
- uses: actions/setup-node@v3
1313
with:
1414
node-version: '12.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@v2
23+
- uses: actions/setup-node@v3
2424
with:
2525
registry-url: 'https://npm.pkg.github.com'
2626
- run: npm publish

CHANGELOG.md

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

3+
## 0.5.1
4+
5+
### Chores
6+
7+
- \#171 update dependency `vue-eslint-parser` to v8.3.0
8+
- \#178 update dependency `ejs` to v3.1.8
9+
- \#186 update dependency `commander` to v9.3.0
10+
- \#187 update dependency `express` to v4.18.1
11+
12+
### Fixes
13+
14+
- Fails to render when the component uses optional chaining operator \#174 from @nachodd
15+
316
## 0.5.0
417

518
change package type to `module`.

0 commit comments

Comments
 (0)