Skip to content

Commit a4ce8e0

Browse files
authored
INT-3302_4: Use gh-pages instead of deprecated storybook-deployer (#415)
* INT-3302_4: Removed deprecated storybook-deployer dependency in favour of gh-pages * INT-3302_4: Put back rc * INT-3302_4: Use `yarn deploy-storybook` in Jenkinsfile * INT-3302_4: Added storybook link to README.md
1 parent 0622bf2 commit a4ce8e0

File tree

4 files changed

+97
-146
lines changed

4 files changed

+97
-146
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mixedBeehiveFlow(
1414
def status = beehiveFlowStatus()
1515
if (status.branchState == 'releaseReady' && status.isLatest) {
1616
tinyGit.withGitHubSSHCredentials {
17-
exec('yarn storybook-to-ghpages')
17+
exec('yarn deploy-storybook')
1818
}
1919
} else {
2020
echo "Skipping as is not latest release"

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ This package is a thin wrapper around [TinyMCE](https://github.com/tinymce/tinym
77
* If you need detailed documentation on TinyMCE, see: [TinyMCE Documentation](https://www.tiny.cloud/docs/tinymce/7/).
88
* For the TinyMCE Vue Quick Start, see: [TinyMCE Documentation - Vue Integration](https://www.tiny.cloud/docs/tinymce/7/vue-cloud).
99
* For the TinyMCE Vue Technical Reference, see: [TinyMCE Documentation - TinyMCE Vue Technical Reference](https://www.tiny.cloud/docs/tinymce/7/vue-ref).
10+
* For our quick demos, check out the TinyMCE Vue [Storybook](https://tinymce.github.io/tinymce-vue/).
11+
1012

1113
### Support
1214

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tinymce/tinymce-vue",
3-
"version": "6.0.0",
3+
"version": "6.0.0-rc",
44
"description": "Official TinyMCE Vue 3 Component",
55
"private": false,
66
"repository": {
@@ -16,7 +16,8 @@
1616
"build": "yarn run clean && yarn run lint && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json && node rollup.build.js",
1717
"storybook": "start-storybook -p 6006",
1818
"demo": "vite",
19-
"build-storybook": "build-storybook"
19+
"build-storybook": "build-storybook",
20+
"deploy-storybook": "yarn build-storybook && gh-pages -d ./storybook-static -u 'tiny-bot <[email protected]>'"
2021
},
2122
"keywords": [
2223
"tinymce",
@@ -47,7 +48,6 @@
4748
"@storybook/addon-notes": "^5.3.21",
4849
"@storybook/builder-webpack5": "^6.5.16",
4950
"@storybook/manager-webpack5": "^6.5.16",
50-
"@storybook/storybook-deployer": "^2.8.16",
5151
"@storybook/vue3": "^6.5.13",
5252
"@tinymce/beehive-flow": "^0.19.0",
5353
"@tinymce/eslint-plugin": "^2.3.1",
@@ -60,6 +60,7 @@
6060
"babel-register": "^6.26.0",
6161
"css-loader": "^6.2.0",
6262
"file-loader": "^6.0.0",
63+
"gh-pages": "^6.1.1",
6364
"react": "^16.14.0",
6465
"react-dom": "^16.14.0",
6566
"regenerator-runtime": "^0.13.9",

0 commit comments

Comments
 (0)