@openmrs/webpack-config 5.7.2 → 5.7.3-pre.2109
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 +4 -0
- package/package.json +5 -2
- package/src/index.ts +4 -0
package/dist/index.js
CHANGED
|
@@ -283,7 +283,11 @@ 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',
|
|
286
287
|
'lodash.findlast': 'lodash-es/findLast',
|
|
288
|
+
'lodash.isequal': 'lodash-es/isEqual',
|
|
289
|
+
'lodash.omit': 'lodash-es/omit',
|
|
290
|
+
'lodash.throttle': 'lodash-es/throttle',
|
|
287
291
|
},
|
|
288
292
|
} }, exports.overrides);
|
|
289
293
|
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.
|
|
3
|
+
"version": "5.7.3-pre.2109",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -37,6 +37,7 @@
|
|
|
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",
|
|
40
41
|
"sass": ">=1.45.0 <1.65.0",
|
|
41
42
|
"sass-loader": "^12.3.0",
|
|
42
43
|
"style-loader": "^3.3.1",
|
|
@@ -49,6 +50,8 @@
|
|
|
49
50
|
"webpack": "5.x"
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
53
|
+
"@types/lodash-es": "^4.17.5",
|
|
52
54
|
"typescript": "^4.6.4"
|
|
53
|
-
}
|
|
55
|
+
},
|
|
56
|
+
"stableVersion": "5.7.2"
|
|
54
57
|
}
|
package/src/index.ts
CHANGED
|
@@ -335,7 +335,11 @@ 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',
|
|
338
339
|
'lodash.findlast': 'lodash-es/findLast',
|
|
340
|
+
'lodash.isequal': 'lodash-es/isEqual',
|
|
341
|
+
'lodash.omit': 'lodash-es/omit',
|
|
342
|
+
'lodash.throttle': 'lodash-es/throttle',
|
|
339
343
|
},
|
|
340
344
|
},
|
|
341
345
|
...overrides,
|