Skip to content

Commit 929062e

Browse files
committed
Merge branch 'main' into develop
# Conflicts: # CHANGELOG.md # package-lock.json # package.json
2 parents b06da4c + e1aeb02 commit 929062e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# publish for npm package.
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: '12.x'
14+
node-version: '18.x'
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: |
1717
npm ci

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66

77
- add support for importing scripts with some attributes(`src`, `setup`, `lang`).
88

9-
## 0.6.0
9+
## 0.6.1
1010

1111
### enhancement
1212

1313
- add getImportDeclarationTree API.
1414

1515
### Chores
1616

17+
- use Node.js LTS for build in GitHub Actions.
1718
- \#210 `express` to v4.8.12
1819

1920
## 0.5.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ npm exec vca -- --dir .
4848

4949
## API
5050

51-
vue-component-analyzer is also available as an API from v0.6.0.
51+
vue-component-analyzer is also available as an API from v0.6.1.
5252

5353
This API is intended to be used for testing.
5454

rollup.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import commonjs from '@rollup/plugin-commonjs';
33
import {nodeResolve} from '@rollup/plugin-node-resolve';
44
import json from '@rollup/plugin-json';
55
import terser from '@rollup/plugin-terser';
6-
import { readFile } from 'fs/promises';
6+
import {readFile} from 'fs/promises';
77
const pkg = JSON.parse(
88
await readFile(
99
new URL('./package.json', import.meta.url)

0 commit comments

Comments
 (0)