Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/udecode/plate into table-ce…
Browse files Browse the repository at this point in the history
…lls-merging-poc-2

# Conflicts:
#	apps/www/src/registry/default/plate-ui/table-element.tsx
#	packages/table/src/components/TableCellElement/useTableCellElementResizable.ts
#	packages/table/src/components/TableCellElement/useTableCellElementState.ts
#	yarn.lock
  • Loading branch information
dimaanj committed Sep 19, 2023
2 parents 7cc1c84 + 9efa41a commit 0ce531b
Show file tree
Hide file tree
Showing 582 changed files with 18,030 additions and 8,873 deletions.
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ module.exports = {
'warn',
{
alias: {
'@/app': './apps/www/src/app',
'@/plate': './apps/www/src/lib/plate',
'@/components': './apps/www/src/components',
'@/hooks': './apps/www/src/hooks',
Expand Down
12 changes: 6 additions & 6 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ assignees: ''

---

**Description**
## Description



<!-- A clear and concise description of what the bug is. -->

**Steps to Reproduce**
## Steps to Reproduce



Expand All @@ -25,7 +25,7 @@ assignees: ''
3. Scroll down to '....'
4. See the error -->

**Sandbox**
## Sandbox



Expand All @@ -35,18 +35,18 @@ Share a link to a CodeSandbox where the error can be reproduced. You can start f
[base sandbox here](https://codesandbox.io/s/rxo5rl?file=%2FApp.tsx)
or refer to the examples too. -->

**Expected Behavior**
## Expected Behavior



<!-- A clear and concise description of what you expected to happen. It's often helpful to test the behavior of other editors like Google Docs, Medium, Notion, etc., to see how they handle the same issue. -->

**Environment**
## Environment

- slate:
- slate-react:
- browser: chrome

**Bounty**
## Bounty

Click [here](https://console.algora.io/org/Udecode/bounties/new) to add a bounty via Algora.
23 changes: 17 additions & 6 deletions .github/workflows/sync-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,18 @@ on:
- 'templates/**'

jobs:
build-playground:
name: build-playground
build:
name: build
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
template:
- plate-template
- plate-playground-template
defaults:
run:
working-directory: templates/plate-playground-template
working-directory: templates/${{ matrix.template }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -52,13 +58,18 @@ jobs:
- name: Install dependencies
run: pnpm install

# Lint, typecheck, build
- name: Build
run: pnpm build

sync:
needs: build-playground
needs: build
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
template:
- plate-template
- plate-playground-template
if: ${{ success() }}
steps:
- name: Checkout Repo
Expand All @@ -68,5 +79,5 @@ jobs:
- name: Sync Templates
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
run: ./scripts/sync-templates.sh "templates/plate-playground-template"
run: ./scripts/sync-templates.sh "templates/${{ matrix.template }}"
shell: bash
Loading

0 comments on commit 0ce531b

Please sign in to comment.