File tree 3 files changed +6
-12
lines changed
3 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 3
3
node_modules
4
4
dist
5
5
link.sh
6
+ .cache
7
+ TODOs.md
Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ module.exports = (env = {}) => {
56
56
cacheIdentifier : hash (
57
57
fs . readFileSync ( path . resolve ( __dirname , '../package.json' ) ) +
58
58
JSON . stringify ( env )
59
- )
59
+ ) ,
60
+ cacheDirectory : path . resolve ( __dirname , '../.cache' )
60
61
}
61
62
} ,
62
63
...( babel
@@ -88,16 +89,7 @@ module.exports = (env = {}) => {
88
89
} )
89
90
] ,
90
91
optimization : {
91
- minimize,
92
- splitChunks : {
93
- cacheGroups : {
94
- commons : {
95
- test : / e s m - b u n d l e r / ,
96
- name : 'vendors' ,
97
- chunks : 'all'
98
- }
99
- }
100
- }
92
+ minimize
101
93
} ,
102
94
devServer : {
103
95
stats : 'minimal' ,
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ pitcher.pitch = function() {
82
82
}
83
83
84
84
// Rewrite request. Technically this should only be done when we have deduped
85
- // loaders. But somehow this is required for template source map to work.. .
85
+ // loaders. But somehow this is required for block source maps to work.
86
86
return genProxyModule ( loaders , context )
87
87
}
88
88
You can’t perform that action at this time.
0 commit comments