@forge/manifest 12.9.0-next.4 → 12.9.0-next.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 12.9.0-next.5
4
+
5
+ ### Minor Changes
6
+
7
+ - 8197e66: rename shards to targets in overrides
8
+
3
9
  ## 12.9.0-next.4
4
10
 
5
11
  ### Minor Changes
@@ -33406,7 +33406,7 @@
33406
33406
  ]
33407
33407
  }
33408
33408
  },
33409
- "shards": {
33409
+ "targets": {
33410
33410
  "type": "array",
33411
33411
  "minItems": 1,
33412
33412
  "items": {
@@ -828,7 +828,7 @@ export type OverriddenServices = {
828
828
  export type ManifestOverrides = {
829
829
  applyTo: {
830
830
  environmentTypes?: ['DEVELOPMENT' | 'STAGING' | 'PRODUCTION', ...('DEVELOPMENT' | 'STAGING' | 'PRODUCTION')[]];
831
- shards?: [string, ...string[]];
831
+ targets?: [string, ...string[]];
832
832
  };
833
833
  value: {
834
834
  services?: OverriddenServices;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "12.9.0-next.4",
3
+ "version": "12.9.0-next.5",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {