Skip to content

Commit 766462e

Browse files
Update all non-major dependencies (#42)
* Update all non-major dependencies * Fix lint warnings --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ivan Demchuk <[email protected]>
1 parent 04f0fc0 commit 766462e

File tree

9 files changed

+363
-554
lines changed

9 files changed

+363
-554
lines changed

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node: [18]
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3.3.0
22+
uses: actions/checkout@v3.4.0
2323
- name: Setup Node.js ${{ matrix.node }}
2424
uses: actions/[email protected]
2525
with:
@@ -40,7 +40,7 @@ jobs:
4040
name: Lint source code
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v3.3.0
43+
uses: actions/checkout@v3.4.0
4444
- name: Setup Node.js
4545
uses: actions/[email protected]
4646
- uses: pnpm/[email protected]
@@ -56,9 +56,9 @@ jobs:
5656
name: Test build of example projects
5757
steps:
5858
- name: Checkout unplugin-fluent-vue
59-
uses: actions/checkout@v3.3.0
59+
uses: actions/checkout@v3.4.0
6060
- name: Checkout examples
61-
uses: actions/checkout@v3.3.0
61+
uses: actions/checkout@v3.4.0
6262
with:
6363
repository: fluent-vue/examples
6464
path: examples

__tests__/frameworks/vite/errors.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { resolve } from 'path'
1+
import { resolve } from 'node:path'
22
import { describe, expect, it } from 'vitest'
33

44
import vue3base from '@vitejs/plugin-vue'

__tests__/frameworks/vite/external.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { relative, resolve } from 'path'
1+
import { relative, resolve } from 'node:path'
22
import { describe, expect, it } from 'vitest'
33

44
import vue3base from '@vitejs/plugin-vue'

__tests__/frameworks/vite/util.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { resolve, sep } from 'path'
1+
import { resolve, sep } from 'node:path'
22

33
import type { InlineConfig, ModuleNode } from 'vite'
44
import { createServer } from 'vite'

__tests__/frameworks/webpack/util.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import path from 'path'
1+
import path from 'node:path'
22
import webpack from 'webpack'
33
import { Volume, createFsFromVolume } from 'memfs'
44

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -62,32 +62,32 @@
6262
"release": "dotenv release-it"
6363
},
6464
"dependencies": {
65-
"@fluent/syntax": "^0.18.1",
65+
"@fluent/syntax": "^0.19.0",
6666
"@rollup/pluginutils": "^5.0.0",
67-
"magic-string": "^0.29.0",
67+
"magic-string": "^0.30.0",
6868
"unplugin": "^1.0.0"
6969
},
7070
"devDependencies": {
71-
"@antfu/eslint-config-ts": "0.35.2",
71+
"@antfu/eslint-config-ts": "0.36.0",
7272
"@release-it-plugins/lerna-changelog": "5.0.0",
73-
"@types/node": "18.13.0",
74-
"@vitejs/plugin-vue": "4.0.0",
75-
"@vitest/coverage-c8": "0.28.4",
73+
"@types/node": "18.15.3",
74+
"@vitejs/plugin-vue": "4.1.0",
75+
"@vitest/coverage-c8": "0.29.3",
7676
"@vue/compiler-sfc": "3.2.47",
77-
"dotenv-cli": "7.0.0",
78-
"eslint": "8.34.0",
79-
"execa": "7.0.0",
77+
"dotenv-cli": "7.1.0",
78+
"eslint": "8.36.0",
79+
"execa": "7.1.1",
8080
"husky": "8.0.3",
81-
"lint-staged": "13.1.1",
81+
"lint-staged": "13.2.0",
8282
"memfs": "3.4.13",
83-
"release-it": "15.6.0",
84-
"tsup": "6.6.2",
83+
"release-it": "15.9.0",
84+
"tsup": "6.6.3",
8585
"typescript": "4.9.5",
86-
"vite": "4.1.1",
87-
"vitest": "0.28.4",
86+
"vite": "4.2.0",
87+
"vitest": "0.29.3",
8888
"vue": "3.2.47",
8989
"vue-loader": "17.0.1",
90-
"webpack": "5.75.0"
90+
"webpack": "5.76.2"
9191
},
9292
"lint-staged": {
9393
"*.js": "eslint --fix",

0 commit comments

Comments
 (0)