File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 47
47
working-directory : ./config
48
48
env :
49
49
FIREBASE_CLI_TOKEN : ${{ secrets.FIREBASE_CLI_TOKEN }}
50
+ - name : Do modular build
51
+ run : yarn build:modular
52
+ - name : Do compat build
53
+ run : yarn build:compat
50
54
- name : Run modular tests
51
55
env :
52
56
APP_CHECK_DEBUG_TOKEN : ${{ secrets.APP_CHECK_DEBUG_TOKEN }}
Original file line number Diff line number Diff line change 1
1
build /* .js
2
+ build /* .map
2
3
firebase-config.js
3
4
context.html
Original file line number Diff line number Diff line change 11
11
"watch" : " webpack --watch" ,
12
12
"build" : " webpack" ,
13
13
"start:modular" : " webpack serve --config-name modular" ,
14
- "start:compat" : " webpack serve --config-name compat"
14
+ "start:compat" : " webpack serve --config-name compat" ,
15
+ "build:modular" : " webpack --config-name modular" ,
16
+ "build:compat" : " webpack --config-name compat"
15
17
},
16
18
"author" : " " ,
17
19
"license" : " ISC" ,
Original file line number Diff line number Diff line change @@ -49,9 +49,6 @@ module.exports = [
49
49
}
50
50
]
51
51
} ,
52
- resolve : {
53
- mainFields : [ 'browser' , 'module' , 'main' ]
54
- } ,
55
52
stats : {
56
53
colors : true
57
54
} ,
@@ -88,9 +85,6 @@ module.exports = [
88
85
}
89
86
]
90
87
} ,
91
- resolve : {
92
- mainFields : [ 'browser' , 'module' , 'main' ]
93
- } ,
94
88
stats : {
95
89
colors : true
96
90
} ,
You can’t perform that action at this time.
0 commit comments