sv 0.7.2 → 0.8.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 +109 -3077
- package/dist/index.js +2 -2
- package/dist/{install-DPLwqpud.js → install-iBxCFLH9.js} +16 -40
- package/dist/{package-manager-BusIB9Xp.js → package-manager-D3PRQ-L_.js} +3545 -622
- package/dist/templates/demo/assets/src/app.css +5 -7
- package/dist/templates/demo/package.json +1 -1
- package/dist/templates/library/package.json +1 -1
- package/dist/templates/minimal/package.json +1 -1
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +2 -2
- package/package.json +7 -7
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
@import '@fontsource/fira-mono';
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
|
-
--font-body:
|
|
5
|
-
|
|
4
|
+
--font-body:
|
|
5
|
+
Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
6
|
+
'Open Sans', 'Helvetica Neue', sans-serif;
|
|
6
7
|
--font-mono: 'Fira Mono', monospace;
|
|
7
8
|
--color-bg-0: rgb(202, 216, 228);
|
|
8
9
|
--color-bg-1: hsl(209, 36%, 86%);
|
|
@@ -22,11 +23,8 @@ body {
|
|
|
22
23
|
background-attachment: fixed;
|
|
23
24
|
background-color: var(--color-bg-1);
|
|
24
25
|
background-size: 100vw 100vh;
|
|
25
|
-
background-image:
|
|
26
|
-
|
|
27
|
-
rgba(255, 255, 255, 0.75) 0%,
|
|
28
|
-
rgba(255, 255, 255, 0) 100%
|
|
29
|
-
),
|
|
26
|
+
background-image:
|
|
27
|
+
radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%),
|
|
30
28
|
linear-gradient(180deg, var(--color-bg-0) 0%, var(--color-bg-1) 15%, var(--color-bg-2) 50%);
|
|
31
29
|
}
|
|
32
30
|
|
package/dist/testing.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { addPnpmBuildDependencies } from '../utils/package-manager.js';
|
|
2
2
|
export type ProjectVariant = 'kit-js' | 'kit-ts' | 'vite-js' | 'vite-ts';
|
|
3
3
|
export type CreateProject = (options: {
|
|
4
4
|
testId: string;
|
package/dist/testing.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __commonJS, __require, __toESM,
|
|
1
|
+
import { __commonJS, __require, __toESM$1 as __toESM, addPnpmBuildDependencies, be, create } from "./package-manager-D3PRQ-L_.js";
|
|
2
2
|
import fs from "node:fs";
|
|
3
3
|
import path from "node:path";
|
|
4
4
|
import process$1 from "node:process";
|
|
@@ -11033,4 +11033,4 @@ function kill(pid) {
|
|
|
11033
11033
|
}
|
|
11034
11034
|
|
|
11035
11035
|
//#endregion
|
|
11036
|
-
export {
|
|
11036
|
+
export { addPnpmBuildDependencies, createProject, setup, startPreview };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sv",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A CLI for creating and updating SvelteKit projects",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,19 +28,19 @@
|
|
|
28
28
|
"@types/degit": "^2.8.6",
|
|
29
29
|
"@types/ps-tree": "^1.1.6",
|
|
30
30
|
"@types/tar-fs": "^2.0.4",
|
|
31
|
-
"commander": "^13.
|
|
31
|
+
"commander": "^13.1.0",
|
|
32
32
|
"degit": "^2.8.4",
|
|
33
33
|
"empathic": "^1.0.0",
|
|
34
|
-
"package-manager-detector": "^0.2.
|
|
34
|
+
"package-manager-detector": "^0.2.11",
|
|
35
35
|
"picocolors": "^1.1.1",
|
|
36
36
|
"ps-tree": "^1.2.0",
|
|
37
|
-
"tar-fs": "^3.0.
|
|
38
|
-
"tinyexec": "^0.3.
|
|
37
|
+
"tar-fs": "^3.0.8",
|
|
38
|
+
"tinyexec": "^0.3.2",
|
|
39
39
|
"valibot": "^0.41.0",
|
|
40
|
+
"@sveltejs/addons": "0.0.0",
|
|
40
41
|
"@sveltejs/clack-prompts": "0.9.1",
|
|
41
42
|
"@sveltejs/cli-core": "0.0.0",
|
|
42
|
-
"@sveltejs/create": "0.0.0"
|
|
43
|
-
"@sveltejs/addons": "0.0.0"
|
|
43
|
+
"@sveltejs/create": "0.0.0"
|
|
44
44
|
},
|
|
45
45
|
"keywords": [
|
|
46
46
|
"create",
|