storyblok 4.0.0 → 4.0.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +17 -18
package/dist/index.mjs CHANGED
@@ -4029,7 +4029,7 @@ typesCommand.command("generate").description("Generate types d.ts for your compo
4029
4029
  }
4030
4030
  });
4031
4031
 
4032
- const version = "4.0.0";
4032
+ const version = "4.0.1";
4033
4033
  const pkg = {
4034
4034
  version: version};
4035
4035
 
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "storyblok",
3
3
  "type": "module",
4
- "version": "4.0.0",
5
- "packageManager": "pnpm@10.10.0",
4
+ "version": "4.0.1",
6
5
  "description": "Storyblok CLI",
7
6
  "author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
8
7
  "license": "MIT",
@@ -23,21 +22,8 @@
23
22
  "files": [
24
23
  "dist/**"
25
24
  ],
26
- "scripts": {
27
- "build": "unbuild",
28
- "typecheck": "tsc --noEmit",
29
- "release": "release-it",
30
- "dev": "pnpm run build && node dist/index.mjs",
31
- "lint": "eslint .",
32
- "lint:fix": "eslint . --fix",
33
- "test": "vitest",
34
- "test:ci": "vitest run",
35
- "test:ui": "vitest --ui",
36
- "coverage": "vitest run --coverage"
37
- },
38
25
  "dependencies": {
39
26
  "@inquirer/prompts": "^7.5.1",
40
- "@storyblok/js": "^4.0.0",
41
27
  "@topcli/spinner": "^2.1.2",
42
28
  "chalk": "^5.4.1",
43
29
  "commander": "^13.1.0",
@@ -47,7 +33,8 @@
47
33
  "ohash": "^2.0.11",
48
34
  "pathe": "^2.0.3",
49
35
  "read-package-up": "^11.0.0",
50
- "storyblok-js-client": "^6.10.12"
36
+ "@storyblok/js": "4.1.0",
37
+ "storyblok-js-client": "7.0.1"
51
38
  },
52
39
  "devDependencies": {
53
40
  "@release-it/conventional-changelog": "10.0.0",
@@ -60,10 +47,22 @@
60
47
  "memfs": "^4.17.1",
61
48
  "msw": "^2.8.2",
62
49
  "release-it": "^18.1.2",
63
- "typescript": "^5.8.3",
50
+ "typescript": "5.8.3",
64
51
  "unbuild": "^3.5.0",
65
52
  "uuid": "^11.1.0",
66
53
  "vite": "^6.3.5",
67
54
  "vitest": "^3.1.3"
55
+ },
56
+ "scripts": {
57
+ "build": "unbuild",
58
+ "typecheck": "tsc --noEmit",
59
+ "release": "release-it",
60
+ "dev": "pnpm run build && node dist/index.mjs",
61
+ "lint": "eslint .",
62
+ "lint:fix": "eslint . --fix",
63
+ "test": "vitest",
64
+ "test:ci": "vitest run",
65
+ "test:ui": "vitest --ui",
66
+ "coverage": "vitest run --coverage"
68
67
  }
69
- }
68
+ }