@openmrs/webpack-config 3.3.1-pre.1173 → 3.3.1
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/.turbo/turbo-build.log +1 -1
- package/dist/index.js +4 -1
- package/package.json +2 -2
- package/src/index.ts +4 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@openmrs/webpack-config:build: cache hit, replaying output
|
|
1
|
+
@openmrs/webpack-config:build: cache hit, replaying output 7c1bc673ec190c68
|
|
2
2
|
@openmrs/webpack-config:build: $ tsc
|
package/dist/index.js
CHANGED
|
@@ -115,7 +115,10 @@ exports.default = (env, argv = {}) => {
|
|
|
115
115
|
use: [
|
|
116
116
|
require.resolve("style-loader"),
|
|
117
117
|
cssLoader,
|
|
118
|
-
{
|
|
118
|
+
{
|
|
119
|
+
loader: require.resolve("sass-loader"),
|
|
120
|
+
options: { sassOptions: { quietDeps: true } },
|
|
121
|
+
},
|
|
119
122
|
],
|
|
120
123
|
}, exports.scssRuleConfig),
|
|
121
124
|
(0, lodash_1.merge)({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/webpack-config",
|
|
3
|
-
"version": "3.3.1
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"typescript": "~4.5.2",
|
|
54
54
|
"webpack": "^5.64.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "2a01f263f54ae17bb64d47c029550bbbb41cda2a"
|
|
57
57
|
}
|
package/src/index.ts
CHANGED
|
@@ -140,7 +140,10 @@ export default (
|
|
|
140
140
|
use: [
|
|
141
141
|
require.resolve("style-loader"),
|
|
142
142
|
cssLoader,
|
|
143
|
-
{
|
|
143
|
+
{
|
|
144
|
+
loader: require.resolve("sass-loader"),
|
|
145
|
+
options: { sassOptions: { quietDeps: true } },
|
|
146
|
+
},
|
|
144
147
|
],
|
|
145
148
|
},
|
|
146
149
|
scssRuleConfig
|