@openmrs/webpack-config 5.7.2-pre.2101 → 5.7.2
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/dist/index.js +0 -4
- package/package.json +2 -5
- package/src/index.ts +0 -4
package/dist/index.js
CHANGED
|
@@ -283,11 +283,7 @@ exports.default = (env, argv = {}) => {
|
|
|
283
283
|
extensions: ['.tsx', '.ts', '.jsx', '.js', '.scss', '.json'],
|
|
284
284
|
alias: {
|
|
285
285
|
'@openmrs/esm-framework': '@openmrs/esm-framework/src/internal',
|
|
286
|
-
'lodash.debounce': 'lodash-es/debounce',
|
|
287
286
|
'lodash.findlast': 'lodash-es/findLast',
|
|
288
|
-
'lodash.isequal': 'lodash-es/isEqual',
|
|
289
|
-
'lodash.omit': 'lodash-es/omit',
|
|
290
|
-
'lodash.throttle': 'lodash-es/throttle',
|
|
291
287
|
},
|
|
292
288
|
} }, exports.overrides);
|
|
293
289
|
return (0, lodash_1.mergeWith)(baseConfig, exports.additionalConfig, mergeFunction);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/webpack-config",
|
|
3
|
-
"version": "5.7.2
|
|
3
|
+
"version": "5.7.2",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
"css-loader": "^5.2.4",
|
|
38
38
|
"fork-ts-checker-webpack-plugin": "^6.5.0",
|
|
39
39
|
"lodash": "^4.17.21",
|
|
40
|
-
"lodash-es": "^4.17.21",
|
|
41
40
|
"sass": ">=1.45.0 <1.65.0",
|
|
42
41
|
"sass-loader": "^12.3.0",
|
|
43
42
|
"style-loader": "^3.3.1",
|
|
@@ -50,8 +49,6 @@
|
|
|
50
49
|
"webpack": "5.x"
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"@types/lodash-es": "^4.17.5",
|
|
54
52
|
"typescript": "^4.6.4"
|
|
55
|
-
}
|
|
56
|
-
"stableVersion": "5.7.1"
|
|
53
|
+
}
|
|
57
54
|
}
|
package/src/index.ts
CHANGED
|
@@ -335,11 +335,7 @@ export default (env: Record<string, string>, argv: Record<string, string> = {})
|
|
|
335
335
|
extensions: ['.tsx', '.ts', '.jsx', '.js', '.scss', '.json'],
|
|
336
336
|
alias: {
|
|
337
337
|
'@openmrs/esm-framework': '@openmrs/esm-framework/src/internal',
|
|
338
|
-
'lodash.debounce': 'lodash-es/debounce',
|
|
339
338
|
'lodash.findlast': 'lodash-es/findLast',
|
|
340
|
-
'lodash.isequal': 'lodash-es/isEqual',
|
|
341
|
-
'lodash.omit': 'lodash-es/omit',
|
|
342
|
-
'lodash.throttle': 'lodash-es/throttle',
|
|
343
339
|
},
|
|
344
340
|
},
|
|
345
341
|
...overrides,
|