Skip to content

Commit 86fadbc

Browse files
committed
version: bump to 2.2.1
1 parent 236b3d8 commit 86fadbc

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/chrome-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
- uses: pnpm/action-setup@v4
1414
with:
15-
version: 9
15+
version: 10
1616

1717
- uses: actions/setup-node@v4
1818
with:

.github/workflows/firefox-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
- uses: pnpm/action-setup@v4
1414
with:
15-
version: 9
15+
version: 10
1616

1717
- uses: actions/setup-node@v4
1818
with:

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,22 @@
22
"name": "csstats-plus",
33
"description": "Enhances the CSStats website",
44
"private": true,
5-
"version": "2.2.0",
5+
"version": "2.2.1",
66
"type": "module",
77
"scripts": {
88
"dev": "wxt -b edge",
99
"dev:firefox": "wxt -b firefox",
1010
"build": "wxt build",
11+
"build:all": "pnpm build && pnpm build:firefox && pnpm build:edge",
12+
"build:edge": "wxt build -b edge",
1113
"build:firefox": "wxt build -b firefox",
1214
"zip": "wxt zip",
15+
"zip:all": "pnpm zip && pnpm zip:firefox",
16+
"zip:edge": "wxt zip -b edge",
1317
"zip:firefox": "wxt zip -b firefox",
1418
"compile": "tsc --noEmit",
15-
"postinstall": "wxt prepare"
19+
"postinstall": "wxt prepare",
20+
"prepublish": "pnpm build:all && pnpm zip:all"
1621
},
1722
"dependencies": {
1823
"chart.js": "^4.5.1",

0 commit comments

Comments
 (0)