storyblok 4.16.0 → 4.16.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/README.md +3 -3
  2. package/package.json +7 -8
package/README.md CHANGED
@@ -99,7 +99,7 @@ Then you can set breakpoints directly to the typescript files and the debugger w
99
99
 
100
100
  For help, discussion about best practices, or any other conversation that would benefit from being searchable:
101
101
 
102
- - [Discuss Storyblok on Github Discussions](https://github.com/storyblok/storyblok/discussions)
102
+ - [Discuss Storyblok on GitHub Discussions](https://github.com/storyblok/storyblok/discussions)
103
103
 
104
104
  For community support, chatting with other users, please visit:
105
105
 
@@ -114,7 +114,7 @@ For bugs or feature requests, please [submit an issue](https://github.com/storyb
114
114
 
115
115
  ### I can't share my company project code
116
116
 
117
- We understand that you might not be able to share your company's project code. Please provide a minimal reproducible example that demonstrates the issue by using tools like [Stackblitz](https://stackblitz.com) or a link to a Github Repo lease make sure you include a README file with the instructions to build and run the project, important not to include any access token, password or personal information of any kind.
117
+ We understand that you might not be able to share your company's project code. Please provide a minimal reproducible example that demonstrates the issue by using tools like [Stackblitz](https://stackblitz.com) or a link to a GitHub repo. Please make sure you include a README file with the instructions to build and run the project, important not to include any access token, password or personal information of any kind.
118
118
 
119
119
  ### I only have a question
120
120
 
@@ -122,7 +122,7 @@ If you have a question, please ask in the [Discuss Storyblok on Discord](https:/
122
122
 
123
123
  ## Contributing
124
124
 
125
- If you're interested in contributing to Storyblok CLI, please read our [contributing docs](https://github.com/storyblok/.github/blob/main/contributing.md) before submitting a pull request.
125
+ If you're interested in contributing to Storyblok CLI, please read our [contributing docs](../../CONTRIBUTING.md) before submitting a pull request.
126
126
 
127
127
  ## License
128
128
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "storyblok",
3
3
  "type": "module",
4
- "version": "4.16.0",
4
+ "version": "4.16.1",
5
5
  "description": "Storyblok CLI",
6
6
  "author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
7
7
  "license": "MIT",
@@ -52,10 +52,10 @@
52
52
  "open": "^10.1.2",
53
53
  "pathe": "^2.0.3",
54
54
  "read-package-up": "^11.0.0",
55
- "@storyblok/js": "5.0.0",
56
- "@storyblok/management-api-client": "0.1.10",
57
- "storyblok-js-client": "7.2.4",
58
- "@storyblok/region-helper": "1.3.1"
55
+ "@storyblok/js": "5.1.0",
56
+ "@storyblok/management-api-client": "0.2.0",
57
+ "@storyblok/region-helper": "1.4.0",
58
+ "storyblok-js-client": "7.3.0"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@release-it/conventional-changelog": "10.0.0",
@@ -73,7 +73,7 @@
73
73
  "uuid": "^11.1.0",
74
74
  "vite": "^6.3.5",
75
75
  "vitest": "^3.1.3",
76
- "@storyblok/eslint-config": "0.4.2"
76
+ "@storyblok/eslint-config": "0.5.0"
77
77
  },
78
78
  "scripts": {
79
79
  "build": "unbuild",
@@ -82,9 +82,8 @@
82
82
  "debug": "node --inspect-brk --loader tsx src/index.ts",
83
83
  "lint": "eslint .",
84
84
  "lint:fix": "eslint . --fix",
85
- "test": "vitest",
85
+ "test": "vitest run",
86
86
  "test:types": "tsc --noEmit --skipLibCheck",
87
- "test:ci": "vitest run",
88
87
  "test:ui": "vitest --ui",
89
88
  "coverage": "vitest run --coverage"
90
89
  }