@genesislcap/webpack-builder 14.31.0 → 14.32.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/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 -b webpack --https"`
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(`Unrecognised command: ${JSON.stringify(options)}`);
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.31.0",
4
+ "version": "14.32.1",
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.31.0",
15
+ "@genesislcap/build-kit": "^14.32.1",
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": "2eac7177426f939beb5bcd3b78baf98f25f0e630"
56
+ "gitHead": "dfa265faf20864c8fbed12b504afc0fa91a45f5b"
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(`Unrecognised command: ${JSON.stringify(options)}`);
28
+ throw new Error(`Unrecognized command: ${JSON.stringify(options)}`);
29
29
  }
30
30
  };