@inertiajs/svelte 2.1.7 → 2.1.8

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 (3) hide show
  1. package/LICENSE +0 -0
  2. package/package.json +14 -13
  3. package/readme.md +0 -0
package/LICENSE CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inertiajs/svelte",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
4
4
  "license": "MIT",
5
5
  "description": "The Svelte adapter for Inertia.js",
6
6
  "contributors": [
@@ -34,6 +34,16 @@
34
34
  "svelte": "./dist/server.js"
35
35
  }
36
36
  },
37
+ "scripts": {
38
+ "build": "pnpm package && publint",
39
+ "build:with-deps": "svelte-kit sync && vite build --config vite-with-deps.config.js",
40
+ "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
41
+ "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
42
+ "dev": "pnpm package --watch",
43
+ "es2020-check": "pnpm build:with-deps && es-check es2020 \"dist/**/*.js\" --checkFeatures --module --noCache --verbose",
44
+ "package": "svelte-kit sync && svelte-package --input src",
45
+ "prepublishOnly": "pnpm build"
46
+ },
37
47
  "devDependencies": {
38
48
  "@sveltejs/adapter-auto": "^3.2.0",
39
49
  "@sveltejs/kit": "^2.36.3",
@@ -52,17 +62,8 @@
52
62
  "svelte": "^4.0.0 || ^5.0.0"
53
63
  },
54
64
  "dependencies": {
65
+ "@inertiajs/core": "workspace:*",
55
66
  "@types/lodash-es": "^4.17.12",
56
- "lodash-es": "^4.17.21",
57
- "@inertiajs/core": "2.1.7"
58
- },
59
- "scripts": {
60
- "build": "pnpm package && publint",
61
- "build:with-deps": "svelte-kit sync && vite build --config vite-with-deps.config.js",
62
- "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
63
- "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
64
- "dev": "pnpm package --watch",
65
- "es2020-check": "pnpm build:with-deps && es-check es2020 \"dist/**/*.js\" --checkFeatures --module --noCache --verbose",
66
- "package": "svelte-kit sync && svelte-package --input src"
67
+ "lodash-es": "^4.17.21"
67
68
  }
68
- }
69
+ }
package/readme.md CHANGED
File without changes