create-kide-app 0.3.2 → 0.3.4

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.
Files changed (2) hide show
  1. package/index.js +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -60,6 +60,7 @@ const CLEANUP = [
60
60
  ".github/workflows", // upstream CI + @kidecms/core release pipeline — wrong in any scaffold
61
61
  ".github/pull_request_template.md", // Kide's own contribution checklist — wrong in any scaffold
62
62
  "scripts/verify-cloudflare.mjs", // needs the adapters/ overlay, which every scaffold deletes
63
+ "scripts/dev-preview.mjs", // needs starters/ (deleted below) and symlinks back into this repo
63
64
  "data",
64
65
  ".cms-data",
65
66
  "dist",
@@ -457,6 +458,8 @@ async function main() {
457
458
 
458
459
  // Upstream-repo tooling that no scaffold can run (needs the deleted adapters/ overlay).
459
460
  delete pkg.scripts["verify:cloudflare"];
461
+ // Needs starters/ (deleted above) and symlinks back into the template repo — repo-only.
462
+ delete pkg.scripts["dev:preview"];
460
463
 
461
464
  if (mode === "package" && pkg.dependencies["@kidecms/core"]) {
462
465
  pkg.dependencies["@kidecms/core"] = `^${coreVersion}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kide-app",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "Scaffold a new Kide CMS project",
5
5
  "author": "Matti Hernesniemi",
6
6
  "license": "MIT",