Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Latest commit

 

History

History
40 lines (28 loc) · 1.04 KB

README.md

File metadata and controls

40 lines (28 loc) · 1.04 KB

Current support

  • @sveltejs/kit:
    • 1.0.0-next.32
    • 1.0.0-next.33
    • 1.0.0-next.34

What is this?

Version 1.0.0-next.32 of @sveltejs/kit broke a number of things:

  • Doesn't run on Windows because of ESM imports using non-URI paths
  • Breaks with existing adapters Fixed in 1.0.0-next.34
  • Adapt process also doesn't run on Windows
  • Application dependencies are being imported as if they were dependencies of @sveltejs/kit (and thus failing)

This is an UNOFFICIAL compatibility wrapper around the CLI to work around those issues.

It is intended as a temporary drop-in substitute to the svelte-kit CLI.

Usage

npm i -D not-svelte-kit

Replace executions of svelte-kit with not-svelte-kit in your package.json scripts:

"scripts": {
    "dev": "not-svelte-kit dev",
    "build": "not-svelte-kit build",
    "start": "not-svelte-kit start"
},

npx not-svelte-kit adapt is also supported.

This bodge brought to you by SK Incognito.