@itera-web/cli 1.1.67 → 1.1.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/config/webpack.common.js +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -151,6 +151,7 @@ module.exports = {
|
|
|
151
151
|
options: {
|
|
152
152
|
configFile: util_js_1.default.getBabelConfigPath(runtimePath),
|
|
153
153
|
cacheDirectory: true,
|
|
154
|
+
cacheCompression: false,
|
|
154
155
|
},
|
|
155
156
|
},
|
|
156
157
|
],
|
|
@@ -176,4 +177,10 @@ module.exports = {
|
|
|
176
177
|
},
|
|
177
178
|
},
|
|
178
179
|
optimization: {},
|
|
180
|
+
cache: {
|
|
181
|
+
type: 'filesystem',
|
|
182
|
+
buildDependencies: {
|
|
183
|
+
config: [__filename]
|
|
184
|
+
}
|
|
185
|
+
}
|
|
179
186
|
};
|