@prismicio/adapter-sveltekit 0.0.3-beta.13 → 0.0.3-beta.15

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.
@@ -1,4 +1,4 @@
1
- import { pascalCase as pascalCase$1 } from "pascal-case";
1
+ import { pascalCase as pascalCase$1 } from "change-case";
2
2
  const pascalCase = (...input) => {
3
3
  return pascalCase$1(input.filter(Boolean).join(" "));
4
4
  };
@@ -1 +1 @@
1
- {"version":3,"file":"pascalCase.js","sources":["../../../src/lib/pascalCase.ts"],"sourcesContent":["import { pascalCase as basePascalCase } from \"pascal-case\";\n\n/**\n * Converts a string to a Pascal cased string.\n *\n * @param input - String to convert into a Pascal cased string.\n *\n * @returns Pascal cased string version of `input`.\n */\nexport const pascalCase = (...input: (string | undefined)[]): string => {\n\treturn basePascalCase(input.filter(Boolean).join(\" \"));\n};\n"],"names":["basePascalCase"],"mappings":";AASO,MAAM,aAAa,IAAI,UAAyC;AACtE,SAAOA,aAAe,MAAM,OAAO,OAAO,EAAE,KAAK,GAAG,CAAC;AACtD;"}
1
+ {"version":3,"file":"pascalCase.js","sources":["../../../src/lib/pascalCase.ts"],"sourcesContent":["import { pascalCase as basePascalCase } from \"change-case\";\n\n/**\n * Converts a string to a Pascal cased string.\n *\n * @param input - String to convert into a Pascal cased string.\n *\n * @returns Pascal cased string version of `input`.\n */\nexport const pascalCase = (...input: (string | undefined)[]): string => {\n\treturn basePascalCase(input.filter(Boolean).join(\" \"));\n};\n"],"names":["basePascalCase"],"mappings":";AASO,MAAM,aAAa,IAAI,UAAyC;AACtE,SAAOA,aAAe,MAAM,OAAO,OAAO,EAAE,KAAK,GAAG,CAAC;AACtD;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismicio/adapter-sveltekit",
3
- "version": "0.0.3-beta.13",
3
+ "version": "0.0.3-beta.15",
4
4
  "description": "Prismic adapter for SvelteKit.",
5
5
  "keywords": [
6
6
  "typescript",
@@ -52,45 +52,31 @@
52
52
  "audit": "yarn npm audit --environment production --severity high"
53
53
  },
54
54
  "dependencies": {
55
- "@prismicio/plugin-kit": "0.0.3-beta.15",
55
+ "@prismicio/plugin-kit": "0.0.3-beta.17",
56
56
  "@prismicio/types-internal": "3.16.1",
57
+ "change-case": "5.4.4",
57
58
  "common-tags": "1.8.2",
58
59
  "magicast": "0.5.1",
59
- "pascal-case": "3.1.2",
60
- "prettier-plugin-svelte": "3.4.0"
60
+ "prettier-plugin-svelte": "3.4.1"
61
61
  },
62
62
  "devDependencies": {
63
- "@eslint/js": "9.39.1",
64
- "@sveltejs/kit": "2.49.1",
65
- "@sveltejs/vite-plugin-svelte": "6.2.1",
66
- "@trivago/prettier-plugin-sort-imports": "6.0.0",
63
+ "@eslint/js": "9.39.2",
64
+ "@sveltejs/kit": "2.50.0",
65
+ "@sveltejs/vite-plugin-svelte": "6.2.4",
66
+ "@trivago/prettier-plugin-sort-imports": "6.0.2",
67
67
  "@types/common-tags": "1.8.4",
68
68
  "depcheck": "1.4.7",
69
- "eslint": "9.39.1",
69
+ "eslint": "9.39.2",
70
70
  "eslint-config-prettier": "10.1.8",
71
- "eslint-plugin-svelte": "3.13.0",
71
+ "eslint-plugin-svelte": "3.14.0",
72
72
  "eslint-plugin-tsdoc": "0.5.0",
73
- "prettier": "3.7.4",
74
- "prettier-plugin-jsdoc": "1.7.0",
75
- "svelte": "5.45.5",
73
+ "prettier": "3.8.1",
74
+ "prettier-plugin-jsdoc": "1.8.0",
75
+ "svelte": "5.48.0",
76
76
  "typescript": "5.9.3",
77
- "typescript-eslint": "8.48.1",
78
- "vite": "7.2.6",
77
+ "typescript-eslint": "8.53.1",
78
+ "vite": "7.3.1",
79
79
  "vite-plugin-sdk": "0.1.5"
80
80
  },
81
- "peerDependencies": {
82
- "@sveltejs/kit": "^1 || ^2",
83
- "prettier": ">=3",
84
- "prettier-plugin-svelte": ">=3",
85
- "svelte": "^3.54.0 || ^4.0.0-next.0 || ^5.0.0-next.1"
86
- },
87
- "peerDependenciesMeta": {
88
- "prettier": {
89
- "optional": true
90
- },
91
- "prettier-plugin-svelte": {
92
- "optional": true
93
- }
94
- },
95
81
  "stableVersion": "0.0.2"
96
82
  }
@@ -1,4 +1,4 @@
1
- import { pascalCase as basePascalCase } from "pascal-case";
1
+ import { pascalCase as basePascalCase } from "change-case";
2
2
 
3
3
  /**
4
4
  * Converts a string to a Pascal cased string.