File tree 3 files changed +21
-2
lines changed 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 1.0.0" ,
3
+ "configurations" : [
4
+ {
5
+ "name" : " Launch Egg React" ,
6
+ "type" : " node" ,
7
+ "request" : " launch" ,
8
+ "cwd" : " ${workspaceRoot}" ,
9
+ "runtimeExecutable" : " npm" ,
10
+ "windows" : { "runtimeExecutable" : " npm.cmd" },
11
+ "runtimeArgs" : [ " run" , " debug" ],
12
+ "console" : " integratedTerminal" ,
13
+ "protocol" : " auto" ,
14
+ "restart" : true ,
15
+ "port" : 9229 ,
16
+ "autoAttachChildProcesses" : true
17
+ }
18
+ ]
19
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " egg-react-typescript-boilerplate" ,
3
- "version" : " 3.0.1 " ,
3
+ "version" : " 3.0.2 " ,
4
4
"description" : " 基于 egg + react + typescript + webpack 服务端渲染工程骨架项目" ,
5
5
"scripts" : {
6
6
"start" : " egg-scripts start" ,
Original file line number Diff line number Diff line change 3
3
4
4
module . exports = {
5
5
plugins : [
6
- require ( 'autoprefixer' ) ( { browsers : [ 'iOS >= 7' , 'Android >= 4.0' ] } )
6
+ require ( 'autoprefixer' ) ( { overrideBrowserslist : [ 'iOS >= 7' , 'Android >= 4.0' ] } )
7
7
]
8
8
} ;
You can’t perform that action at this time.
0 commit comments