Skip to content

Commit 182eeb8

Browse files
author
Junmin Ahn
committed
chore(slate-table): release a new version
1 parent dc94dcc commit 182eeb8

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

.github/workflows/deploy-example.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77

88
jobs:
99
main:
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-20.04
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Install asdf
1414
uses: asdf-vm/actions/setup@v1
15-
- uses: actions/cache@v2
15+
- uses: actions/cache@v3
1616
id: asdf-cache
1717
with:
1818
path: |
@@ -22,13 +22,12 @@ jobs:
2222
run: |
2323
cat .tool-versions | cut -f 1 -d ' ' | xargs -n 1 asdf plugin-add || true
2424
asdf plugin-update --all
25-
bash ~/.asdf/plugins/nodejs/bin/import-release-team-keyring
2625
asdf install
2726
asdf reshim
2827
- name: Get yarn cache directory path
2928
id: yarn-cache-dir-path
3029
run: echo "::set-output name=dir::$(yarn cache dir)"
31-
- uses: actions/cache@v2
30+
- uses: actions/cache@v3
3231
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3332
with:
3433
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
nodejs 12.18.3
2-
yarn 1.22.4
1+
nodejs 16.14.0
2+
yarn 1.22.17
33
python 3.8.6

examples/create-react-app-typescript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"homepage": "https://junminahn.github.io/react-page-plugins",
66
"dependencies": {
7-
"@react-page-plugins/slate-table": "0.1.0-alpha.10",
7+
"@react-page-plugins/slate-table": "0.1.0-alpha.11",
88
"@react-page/editor": "^1.4.1",
99
"@testing-library/jest-dom": "^5.11.4",
1010
"@testing-library/react": "^11.1.0",
@@ -47,4 +47,4 @@
4747
"last 1 safari version"
4848
]
4949
}
50-
}
50+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import table from '@react-page-plugins/slate-table';
22
import '@react-page-plugins/slate-table/lib/index.css';
3+
import 'rc-slider/assets/index.css';
34

45
export const cellPlugins = [table()];

packages/slate-table/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import table from '@react-page-plugins/slate-table';
2121

2222
import '@react-page/editor/lib/index.css';
2323
import '@react-page-plugins/slate-table/lib/index.css';
24+
import 'rc-slider/assets/index.css';
2425

2526
const cellPlugins = [table()];
2627

packages/slate-table/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-page-plugins/slate-table",
3-
"version": "0.1.0-alpha.10",
3+
"version": "0.1.0-alpha.11",
44
"description": "react-page plugin for slate table",
55
"main": "./lib/index.js",
66
"module": "./lib-es/index.js",

0 commit comments

Comments
 (0)