Skip to content

Commit f915cd3

Browse files
authored
Merge pull request #14 from Applelo/dev
Version 2.0.3
2 parents 4a954d9 + f0e27ed commit f915cd3

File tree

9 files changed

+852
-202
lines changed

9 files changed

+852
-202
lines changed

.github/workflows/jsr.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
10+
permissions:
11+
contents: read
12+
id-token: write
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Publish package
18+
run: npx jsr publish

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unplugin-inject-preload",
33
"type": "module",
4-
"version": "2.0.2",
4+
"version": "2.0.3",
55
"packageManager": "pnpm@8.15.5",
66
"description": "Inject <link rel='preload'> for Webpack/ViteJS",
77
"license": "MIT",
@@ -93,8 +93,8 @@
9393
"webpack-sources": "^3.2.3"
9494
},
9595
"devDependencies": {
96-
"@antfu/eslint-config": "2.9.0",
97-
"@rspack/core": "^0.5.8",
96+
"@antfu/eslint-config": "2.10.0",
97+
"@rspack/core": "^0.5.9",
9898
"@types/mime-types": "^2.1.4",
9999
"@types/node": "^20.11.30",
100100
"@types/webpack-sources": "^3.2.3",
@@ -109,7 +109,7 @@
109109
"tsup": "^8.0.2",
110110
"tsx": "^4.7.1",
111111
"typescript": "^5.4.3",
112-
"vite": "^5.2.4",
112+
"vite": "^5.2.6",
113113
"vitest": "^1.4.0",
114114
"webpack": "^5.91.0"
115115
}

playground/rspack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"build": "rspack build"
66
},
77
"devDependencies": {
8-
"@rspack/cli": "0.5.8",
8+
"@rspack/cli": "0.5.9",
99
"unplugin-inject-preload": "workspace:*"
1010
}
1111
}

playground/vitejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"devDependencies": {
1010
"typescript": "^5.4.3",
1111
"unplugin-inject-preload": "workspace:*",
12-
"vite": "^5.2.4",
12+
"vite": "^5.2.6",
1313
"vite-plugin-inspect": "^0.8.3"
1414
}
1515
}

0 commit comments

Comments
 (0)