Skip to content

Commit 59fc00f

Browse files
authored
Merge pull request #241 from swfz/feature/migrate
feature/migrate
2 parents 5b555a4 + 368442d commit 59fc00f

File tree

7 files changed

+1712
-1787
lines changed

7 files changed

+1712
-1787
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4.1.7
10+
- uses: pnpm/action-setup@v4.0.0
11+
with:
12+
run_install: true
1013
- uses: actions/setup-node@v4.1.0
1114
with:
1215
node-version-file: .node-version
13-
cache: yarn
16+
cache: pnpm
1417
- name: build
1518
run: |
16-
yarn
17-
yarn build
19+
pnpm build

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "chrome-extension-gslide-usertool-comment-stream",
33
"private": true,
44
"version": "0.0.0",
5+
"type": "module",
56
"scripts": {
67
"dev": "vite",
78
"build": "tsc && vite build && node script/patch_manifest.js",
@@ -15,14 +16,15 @@
1516
"rollup-plugin-copy": "3.5.0"
1617
},
1718
"devDependencies": {
19+
"@crxjs/vite-plugin": "2.0.0-beta.28",
1820
"@types/chrome": "0.0.283",
1921
"@types/node": "20.14.15",
2022
"@types/react": "18.3.7",
2123
"@types/react-dom": "18.3.0",
2224
"@vitejs/plugin-react": "4.3.3",
2325
"prettier": "3.3.3",
24-
"rollup-plugin-chrome-extension": "4.0.1-25",
2526
"typescript": "5.6.3",
26-
"vite": "4.5.5"
27-
}
27+
"vite": "5.4.11"
28+
},
29+
"packageManager": "pnpm@9.14.2"
2830
}

0 commit comments

Comments
 (0)