Skip to content

Commit 2cf876c

Browse files
authored
Merge branch 'unjs:main' into main
2 parents 15686b8 + dd9d184 commit 2cf876c

File tree

12 files changed

+1883
-2142
lines changed

12 files changed

+1883
-2142
lines changed

.github/workflows/ci.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set node
17-
uses: actions/setup-node@v4
16+
- uses: actions/setup-node@v4
1817
with:
1918
node-version: lts/*
20-
21-
- name: Setup
22-
run: npm i -g @antfu/ni
23-
24-
- name: Install
25-
run: nci
26-
27-
- name: Lint
28-
run: nr lint
19+
- run: corepack enable
20+
- run: npm i -g @antfu/ni
21+
- run: nci
22+
- run: nr lint
2923

3024
ci:
3125
runs-on: ${{ matrix.os }}

.github/workflows/gh-pages.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,9 @@ jobs:
1818
uses: actions/setup-node@v4
1919
with:
2020
node-version: lts/*
21-
22-
- name: Setup
23-
run: npm i -g @antfu/ni
24-
25-
- name: Install
26-
run: nci
21+
- run: corepack enable
22+
- run: npm i -g @antfu/ni
23+
- run: nci
2724

2825
- name: Build unplugin
2926
run: nr build

.github/workflows/publish-commit.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77

88
steps:
9-
- name: Checkout code
10-
uses: actions/checkout@v4
11-
9+
- uses: actions/checkout@v4
1210
- run: corepack enable
1311
- uses: actions/setup-node@v4
1412
with:

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# [1.15.0](https://github.com/unjs/unplugin/compare/v1.14.1...v1.15.0) (2024-10-28)
2+
3+
4+
### Bug Fixes
5+
6+
* Unvirtualize `importer` paths in webpack and rspack ([#430](https://github.com/unjs/unplugin/issues/430)) ([52f0b79](https://github.com/unjs/unplugin/commit/52f0b79df3ddcd753a176e9d021f3eb271890bcd))
7+
8+
9+
110
## [1.14.1](https://github.com/unjs/unplugin/compare/v1.14.0...v1.14.1) (2024-09-11)
211

312

docs/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@
1212
"lint": "eslint . && case-police '**/*.md'"
1313
},
1414
"devDependencies": {
15-
"@iconify/json": "^2.2.237",
16-
"@shikijs/vitepress-twoslash": "^1.13.0",
17-
"case-police": "^0.6.1",
15+
"@iconify/json": "^2.2.265",
16+
"@shikijs/vitepress-twoslash": "^1.22.2",
17+
"case-police": "^0.7.0",
1818
"consola": "^3.2.3",
1919
"dotenv": "^16.4.5",
20-
"eslint": "^9.9.0",
20+
"eslint": "^9.13.0",
2121
"markdown-it": "^14.1.0",
2222
"markdown-it-github-alerts": "^0.3.0",
23-
"ofetch": "^1.3.4",
24-
"tsx": "^4.17.0",
25-
"unocss": "^0.62.1",
23+
"ofetch": "^1.4.1",
24+
"tsx": "^4.19.2",
25+
"unocss": "^0.63.6",
2626
"unplugin": "workspace:*",
27-
"unplugin-icons": "^0.19.2",
27+
"unplugin-icons": "^0.19.3",
2828
"unplugin-vue-components": "^0.27.4",
29-
"vitepress": "^1.3.2",
30-
"vitepress-plugin-group-icons": "^1.0.3",
31-
"vue": "^3.4.38"
29+
"vitepress": "^1.4.1",
30+
"vitepress-plugin-group-icons": "^1.3.0",
31+
"vue": "^3.5.12"
3232
}
3333
}

package.json

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unplugin",
33
"type": "commonjs",
4-
"version": "1.14.1",
4+
"version": "1.15.0",
55
"packageManager": "[email protected]",
66
"description": "Unified plugin system for build tools",
77
"license": "MIT",
@@ -54,41 +54,41 @@
5454
}
5555
},
5656
"dependencies": {
57-
"acorn": "^8.12.1",
57+
"acorn": "^8.14.0",
5858
"webpack-virtual-modules": "^0.6.2"
5959
},
6060
"devDependencies": {
6161
"@ampproject/remapping": "^2.3.0",
62-
"@antfu/eslint-config": "^3.7.2",
63-
"@antfu/ni": "^0.22.4",
64-
"@farmfe/cli": "^1.0.3",
65-
"@farmfe/core": "^1.3.12",
66-
"@rspack/cli": "1.0.0-beta.5",
67-
"@rspack/core": "1.0.0-rc.1",
62+
"@antfu/eslint-config": "^3.8.0",
63+
"@antfu/ni": "^0.23.0",
64+
"@farmfe/cli": "1.0.3",
65+
"@farmfe/core": "1.3.12",
66+
"@rspack/cli": "^1.0.14",
67+
"@rspack/core": "^1.0.14",
6868
"@types/fs-extra": "^11.0.4",
69-
"@types/node": "^20.14.15",
69+
"@types/node": "^22.8.1",
7070
"@types/webpack-sources": "^3.2.3",
71-
"bumpp": "^9.5.1",
71+
"bumpp": "^9.7.1",
7272
"conventional-changelog-cli": "^5.0.0",
73-
"esbuild": "^0.23.0",
73+
"esbuild": "^0.24.0",
7474
"esbuild-plugin-copy": "^2.1.1",
75-
"eslint": "^9.9.1",
75+
"eslint": "^9.13.0",
7676
"fast-glob": "^3.3.2",
7777
"fs-extra": "^11.2.0",
78-
"jiti": "^2.0.0",
79-
"lint-staged": "^15.2.9",
80-
"magic-string": "^0.30.11",
81-
"picocolors": "^1.0.1",
82-
"rolldown": "^0.12.2",
83-
"rollup": "^4.20.0",
78+
"jiti": "^2.3.3",
79+
"lint-staged": "^15.2.10",
80+
"magic-string": "^0.30.12",
81+
"picocolors": "^1.1.1",
82+
"rolldown": "^0.13.2",
83+
"rollup": "^4.24.2",
8484
"simple-git-hooks": "^2.11.1",
85-
"tsup": "^8.2.4",
86-
"typescript": "^5.5.4",
85+
"tsup": "^8.3.5",
86+
"typescript": "^5.6.3",
8787
"unplugin": "workspace:*",
88-
"unplugin-unused": "^0.1.1",
89-
"vite": "^5.4.1",
90-
"vitest": "^2.0.5",
91-
"webpack": "^5.93.0",
88+
"unplugin-unused": "^0.2.3",
89+
"vite": "^5.4.10",
90+
"vitest": "^2.1.4",
91+
"webpack": "^5.95.0",
9292
"webpack-cli": "4.10.0"
9393
},
9494
"simple-git-hooks": {

0 commit comments

Comments
 (0)