File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 9
9
5. version timestamp follow the yyyy.MM.dd format
10
10
```
11
11
12
+ ## 0.8.2 [ 2023.03.09]
13
+
14
+ - fix: template vanilla-js initial error(remove ` @vitejs/plugin-react ` dependency)
15
+ - fix: ` yarn create ` error with ` --template ` options
16
+
12
17
## 0.8.1 [ 2022.09.09]
13
18
14
19
- docs: add zn_CN readme
Original file line number Diff line number Diff line change 23
23
"dependencies" : {},
24
24
"devDependencies" : {
25
25
"@crxjs/vite-plugin" : " ^1.0.12" ,
26
- "@vitejs/plugin-react" : " ^1.3.2" ,
27
26
"prettier" : " ^2.7.1" ,
28
27
"vite" : " ^2.9.13"
29
28
}
Original file line number Diff line number Diff line change 1
1
import { defineConfig } from 'vite'
2
2
import { crx } from '@crxjs/vite-plugin'
3
- import react from '@vitejs/plugin-react'
4
3
5
4
import manifest from './src/manifest.js'
6
5
@@ -17,6 +16,6 @@ export default defineConfig(({ mode }) => {
17
16
} ,
18
17
} ,
19
18
20
- plugins : [ crx ( { manifest } ) , react ( ) ] ,
19
+ plugins : [ crx ( { manifest } ) ] ,
21
20
}
22
21
} )
You can’t perform that action at this time.
0 commit comments