-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from CloudCannon/feat/move-collections-config
Get collections config per SSG
- Loading branch information
Showing
11 changed files
with
4,028 additions
and
3,955 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
{ | ||
"name": "@cloudcannon/gadget", | ||
"type": "module", | ||
"version": "0.0.0", | ||
"description": "Inpects a list of files to create configuration for the CloudCannon CMS.", | ||
"keywords": [ | ||
"static site generator", | ||
"cloudcannon" | ||
], | ||
"homepage": "https://github.com/CloudCannon/gadget#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/CloudCannon/gadget.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/CloudCannon/gadget/issues", | ||
"email": "[email protected]" | ||
}, | ||
"main": "src/index.js", | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"src/**/*.js", | ||
"src/**/*.d.ts", | ||
"dist/**/*.d.ts" | ||
], | ||
"scripts": { | ||
"build": "tsc --emitDeclarationOnly", | ||
"test": "ava", | ||
"test:watch": "ava --watch --verbose", | ||
"test:coverage": "c8 --all --src src ava", | ||
"lint": "npm run lint:eslint && npm run lint:tsc && npm run lint:format", | ||
"lint:eslint": "eslint src", | ||
"lint:tsc": "tsc --noEmit", | ||
"lint:format": "npx prettier . -c", | ||
"fix:format": "npx prettier . -w" | ||
}, | ||
"author": "CloudCannon <[email protected]>", | ||
"devDependencies": { | ||
"@cloudcannon/configuration-types": "^0.0.4", | ||
"@types/node": "^20.14.8", | ||
"ava": "^6.1.3", | ||
"c8": "^10.1.2", | ||
"eslint": "^9.5.0", | ||
"prettier": "^3.3.2", | ||
"typescript": "^5.4.5" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@sindresorhus/slugify": "^2.2.1", | ||
"leven": "^4.0.0", | ||
"titleize": "^4.0.0" | ||
} | ||
} | ||
"name": "@cloudcannon/gadget", | ||
"type": "module", | ||
"version": "0.0.0", | ||
"description": "Inpects a list of files to create configuration for the CloudCannon CMS.", | ||
"keywords": [ | ||
"static site generator", | ||
"cloudcannon" | ||
], | ||
"homepage": "https://github.com/CloudCannon/gadget#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/CloudCannon/gadget.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/CloudCannon/gadget/issues", | ||
"email": "[email protected]" | ||
}, | ||
"main": "src/index.js", | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"src/**/*.js", | ||
"src/**/*.d.ts", | ||
"dist/**/*.d.ts" | ||
], | ||
"scripts": { | ||
"build": "tsc --emitDeclarationOnly", | ||
"test": "ava", | ||
"test:watch": "ava --watch --verbose", | ||
"test:coverage": "c8 --all --src src ava", | ||
"lint": "npm run lint:eslint && npm run lint:tsc && npm run lint:format", | ||
"lint:eslint": "eslint src", | ||
"lint:tsc": "tsc --noEmit", | ||
"lint:format": "npx prettier . -c", | ||
"fix:format": "npx prettier . -w" | ||
}, | ||
"author": "CloudCannon <[email protected]>", | ||
"devDependencies": { | ||
"@cloudcannon/configuration-types": "^0.0.7", | ||
"@types/node": "^20.14.12", | ||
"ava": "^6.1.3", | ||
"c8": "^10.1.2", | ||
"eslint": "^9.7.0", | ||
"prettier": "^3.3.3", | ||
"typescript": "^5.5.4" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@sindresorhus/slugify": "^2.2.1", | ||
"leven": "^4.0.0", | ||
"titleize": "^4.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.