Skip to content

Commit 280f6fc

Browse files
Merge branch 'main' of github.com:storyblok/field-plugin
2 parents a604c61 + 749d767 commit 280f6fc

File tree

22 files changed

+241
-22
lines changed

22 files changed

+241
-22
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,15 @@
7171
"contributions": [
7272
"code"
7373
]
74+
},
75+
{
76+
"login": "ECJ222",
77+
"name": "ECJ",
78+
"avatar_url": "https://avatars.githubusercontent.com/u/39567763?v=4",
79+
"profile": "https://github.com/ECJ222",
80+
"contributions": [
81+
"code"
82+
]
7483
}
7584
]
7685
}

.github/workflows/npm-publish-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish CLI to NPM
22

33
on:
44
release:
5-
types: [created]
5+
types: [published]
66

77
jobs:
88
publish-npm:

.github/workflows/npm-publish-library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish library to NPM
22

33
on:
44
release:
5-
types: [created]
5+
types: [published]
66

77
jobs:
88
publish-npm:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ For more details, please refer to the [documentation](https://www.storyblok.com/
2727
</tr>
2828
<tr>
2929
<td align="center" valign="top" width="16.66%"><a href="https://links.dawntraoz.com/"><img src="https://avatars.githubusercontent.com/u/36744484?v=4?s=100" width="100px;" alt="Alba Silvente Fuentes"/><br /><sub><b>Alba Silvente Fuentes</b></sub></a><br /><a href="#code-Dawntraoz" title="Code">💻</a></td>
30+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/ECJ222"><img src="https://avatars.githubusercontent.com/u/39567763?v=4?s=100" width="100px;" alt="ECJ"/><br /><sub><b>ECJ</b></sub></a><br /><a href="#code-ECJ222" title="Code">💻</a></td>
3031
</tr>
3132
</tbody>
3233
</table>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "https://www.storyblok.com/"
99
},
1010
"private": true,
11-
"license": "UNLICENSED",
11+
"license": "MIT",
1212
"workspaces": [
1313
"packages/*",
1414
"packages/cli/templates/*",

packages/cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@storyblok/field-plugin-cli",
3-
"version": "1.4.0",
3+
"version": "1.5.1",
4+
"license": "MIT",
45
"type": "module",
56
"bin": {
67
"field-plugin": "./bin.js"

packages/cli/templates/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"deploy": "npm run build && npx @storyblok/field-plugin-cli@latest deploy"
1111
},
1212
"dependencies": {
13-
"@storyblok/field-plugin": "1.3.0"
13+
"@storyblok/field-plugin": "1.4.2"
1414
},
1515
"devDependencies": {
1616
"vite": "5.4.8",

packages/cli/templates/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"deploy": "npm run build && npx @storyblok/field-plugin-cli@latest deploy"
1313
},
1414
"dependencies": {
15-
"@storyblok/field-plugin": "1.3.0",
15+
"@storyblok/field-plugin": "1.4.2",
1616
"react": "^18.3.1",
1717
"react-dom": "^18.3.1"
1818
},

packages/cli/templates/vue2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"deploy": "npm run build && npx @storyblok/field-plugin-cli@latest deploy"
1313
},
1414
"dependencies": {
15-
"@storyblok/field-plugin": "1.3.0",
15+
"@storyblok/field-plugin": "1.4.2",
1616
"vue": "^2.7.14"
1717
},
1818
"devDependencies": {

packages/cli/templates/vue3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"deploy": "npm run build && npx @storyblok/field-plugin-cli@latest deploy"
1212
},
1313
"dependencies": {
14-
"@storyblok/field-plugin": "1.3.0",
14+
"@storyblok/field-plugin": "1.4.2",
1515
"vue": "^3.2.47"
1616
},
1717
"devDependencies": {

0 commit comments

Comments
 (0)