vela 0.13.0 → 0.13.1

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/dist/bin.js CHANGED
@@ -21,7 +21,7 @@ import pc42 from "picocolors";
21
21
  // package.json
22
22
  var package_default = {
23
23
  name: "vela",
24
- version: "0.13.0",
24
+ version: "0.13.1",
25
25
  type: "module",
26
26
  description: "A CLI for creating and updating SvelteKit projects",
27
27
  license: "MIT",
@@ -86,7 +86,7 @@ var package_default = {
86
86
  shellcheck: "^4.1.0",
87
87
  typescript: "^5.6.0",
88
88
  vite: "^8.2.2",
89
- vitest: "^4.1.11"
89
+ vitest: "^5.0.1"
90
90
  },
91
91
  peerDependencies: {
92
92
  "@sveltejs/kit": "^2.57.1",
@@ -1648,7 +1648,11 @@ var VELA_ONLY_FILES = [
1648
1648
  adds: "the shadcn-svelte config (vega style, lucide icons) that `vela ui add` reads"
1649
1649
  },
1650
1650
  { path: ".npmrc", adds: "engine-strict=true" },
1651
- { path: ".ignore", adds: "search ignores for generated files" }
1651
+ { path: ".ignore", adds: "search ignores for generated files" },
1652
+ {
1653
+ path: "vitest.config.ts",
1654
+ adds: "the server test project `vela test:server` runs \u2014 without it test/setup.ts never loads"
1655
+ }
1652
1656
  ];
1653
1657
  var VELA_ONLY_DIRS = ["src/lib/components", "data", "test", "static"];
1654
1658
  var bless = new Command2("bless").description("upgrade a vanilla SvelteKit project into a VelaStack project").argument("[path]", "path to the existing SvelteKit project").option("--template <type>", "template to scaffold from", "minimal").option("--email <email>", "email of the admin user").option("--password <password>", "password of the admin user").option("--no-install", "skip installing dependencies").addOption(installOption).option("--skip-routes", "preserve src/routes even if it looks untouched").option("--force-routes", "replace src/routes with the vela template without detection").configureHelp(helpConfig).action((projectPath, rawOpts) => {