@cloudcannon/configuration-types 0.0.7 → 0.0.8
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/build/cloudcannon-config-eleventy.json +987 -1387
- package/build/cloudcannon-config-hugo.json +541 -947
- package/build/cloudcannon-config-jekyll.json +720 -1125
- package/build/{cloudcannon-config-default.json → cloudcannon-config-reader.json} +1001 -1427
- package/build/cloudcannon-config.json +995 -2783
- package/package.json +6 -6
- package/src/build-coupled.d.ts +181 -0
- package/src/configuration.d.ts +1534 -0
- package/src/index.d.ts +7 -1702
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ npm run ajv validate -s node_modules/@cloudcannon/configuration-types/cloudcanno
|
|
|
67
67
|
For a CommonJS formatted configuration file (e.g. `/cloudcannon.config.cjs`), you can use a JSDoc comment to indicate the type of the module export:
|
|
68
68
|
|
|
69
69
|
```javascript
|
|
70
|
-
/** @type {import("@cloudcannon/configuration-types").
|
|
70
|
+
/** @type {import("@cloudcannon/configuration-types").Configuration} */
|
|
71
71
|
const config = {
|
|
72
72
|
collections_config: {
|
|
73
73
|
posts: {
|