@appshell/webpack-plugin 1.0.0-alpha.61 → 1.0.0-alpha.63

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.
@@ -45,6 +45,14 @@ export type ComparisonTarget = {
45
45
  name: string;
46
46
  dependencies: Record<string, string | undefined>;
47
47
  };
48
+ /**
49
+ * Every key `appshell config set` accepts, kept adjacent to the type it must agree with.
50
+ *
51
+ * It used to live in the set handler, and adding `caFile` to CliConfig without touching it
52
+ * produced a setting the cli could read and refuse to write.
53
+ */
54
+ export declare const CLI_SETTINGS: readonly ["registry", "application", "scopeId", "authIssuer", "clientId", "apiKey", "apiKeyHeader", "caFile"];
55
+ export type CliSetting = (typeof CLI_SETTINGS)[number];
48
56
  export type CliConfig = Record<string, string> & {
49
57
  apiKey: string;
50
58
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appshell/webpack-plugin",
3
- "version": "1.0.0-alpha.61",
3
+ "version": "1.0.0-alpha.63",
4
4
  "description": "Webpack plugin used to generate a global Appshell configuration for micro-frontends built with Module Federation",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/types/webpack-plugin/src/index.d.ts",
@@ -33,8 +33,8 @@
33
33
  "plugin"
34
34
  ],
35
35
  "license": "MIT",
36
- "gitHead": "f5b20c95dabe1a721f2560dc4af4c4e2dc44ddd4",
36
+ "gitHead": "385f10aa2c4074e3fec2e630d91503b5acbb3c9e",
37
37
  "dependencies": {
38
- "@appshell/tokens": "^1.0.0-alpha.61"
38
+ "@appshell/tokens": "^1.0.0-alpha.63"
39
39
  }
40
40
  }