@genesislcap/webpack-builder 14.30.3 → 14.32.0
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 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Please follow the [Development-SSL-Certificate](https://www.notion.so/genesisglo
|
|
|
18
18
|
Passing `--https` to webpack in `development` mode will enable https. Micro frontends and showcase applications will
|
|
19
19
|
likely contain npm scripts to simply this:
|
|
20
20
|
|
|
21
|
-
`"dev:webpack:https": "genx dev
|
|
21
|
+
`"dev:webpack:https": "genx dev --https"`
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
## License
|
package/dist/index.js
CHANGED
|
@@ -22,6 +22,6 @@ exports.default = (ctx) => tslib_1.__awaiter(void 0, void 0, void 0, function* (
|
|
|
22
22
|
yield (0, commands_1.build)(compiler);
|
|
23
23
|
}
|
|
24
24
|
else {
|
|
25
|
-
throw new Error(`
|
|
25
|
+
throw new Error(`Unrecognized command: ${JSON.stringify(options)}`);
|
|
26
26
|
}
|
|
27
27
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/webpack-builder",
|
|
3
3
|
"description": "Webpack builder",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.32.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"dev": "tsc -b ./tsconfig.json -w"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@genesislcap/build-kit": "^14.
|
|
15
|
+
"@genesislcap/build-kit": "^14.32.0",
|
|
16
16
|
"@module-federation/dashboard-plugin": "2.6.5",
|
|
17
17
|
"@pixability-ui/federated-types": "^0.2.0",
|
|
18
18
|
"camel-case": "^4.1.2",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "aeadb3c8e86295e7d192418df500983c7b48aa4a"
|
|
57
57
|
}
|
package/src/index.ts
CHANGED
|
@@ -25,6 +25,6 @@ export default async (ctx: BuildContext) => {
|
|
|
25
25
|
const compiler = webpack(config);
|
|
26
26
|
await build(compiler);
|
|
27
27
|
} else {
|
|
28
|
-
throw new Error(`
|
|
28
|
+
throw new Error(`Unrecognized command: ${JSON.stringify(options)}`);
|
|
29
29
|
}
|
|
30
30
|
};
|