@cloudcannon/configuration-types 0.0.1 → 0.0.3

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
@@ -1,6 +1,8 @@
1
1
  # Configuration types
2
2
 
3
- Contains types and generates JSON Schemas for the CloudCannon configuration file.
3
+ Contains types and generates JSON Schemas for the [CloudCannon](https://cloudcannon.com/) configuration file.
4
+
5
+ [<img src="https://img.shields.io/npm/v/@cloudcannon%2Fconfiguration-types?logo=npm" alt="version badge">](https://www.npmjs.com/package/@cloudcannon%2Fconfiguration-types)
4
6
 
5
7
  ## Run
6
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudcannon/configuration-types",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Contains types and generates JSON Schemas for the CloudCannon configuration file.",
5
5
  "author": "CloudCannon <support@cloudcannon.com>",
6
6
  "license": "MIT",
@@ -26,7 +26,8 @@
26
26
  "prebuild": "mkdir -p build && rimraf --glob 'build/*.json'",
27
27
  "test": "exit 0"
28
28
  },
29
- "types": "./src/main.d.ts",
29
+ "main": "./src/index.d.ts",
30
+ "types": "./src/index.d.ts",
30
31
  "publishConfig": {
31
32
  "access": "public"
32
33
  },
package/src/index.d.ts CHANGED
@@ -932,16 +932,19 @@ export interface HugoCollectionConfig extends CollectionConfig {
932
932
  }
933
933
 
934
934
  export interface HugoConfiguration extends Omit<DefaultConfiguration, 'output' | 'data_config'> {
935
+ collections_config_override?: boolean;
935
936
  collections_config?: Record<string, HugoCollectionConfig>;
936
937
  data_config?: Record<string, boolean>;
937
938
  }
938
939
 
939
940
  export interface JekyllConfiguration extends Omit<DefaultConfiguration, 'output' | 'data_config'> {
941
+ collections_config_override?: boolean;
940
942
  data_config?: Record<string, boolean>;
941
943
  }
942
944
 
943
945
  export interface EleventyConfiguration
944
946
  extends Omit<DefaultConfiguration, 'output' | 'data_config'> {
947
+ collections_config_override?: boolean;
945
948
  data_config?: Record<string, boolean>;
946
949
  }
947
950