-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix (#2956) * Add table cell menu back (#2958) * fix (#2957) * fix typo on read-mode / edit-mode page (#2962) Co-authored-by: Christian Ratz <christian.ratz@b-ite.de> * Fix link breaking when formatting on (#2954) * Fix link breaking when formatting on * nodeFormat to const * retry checks * allow escaped markdown within TextFormatTransformer (#2964) Co-authored-by: Christian Ratz <christian.ratz@b-ite.de> * Fix bugs with isEditable (#2967) * Fix bugs with isEditable * Revise * Add empty comment in front of 'export' in a bundled file (#2970) * Automated releases (#2949) * change to using package.json in root as pinned version * wip automated release workflow with manual triggerl * change release script * Fix build script * checkout new branch * release on push to next * no accidental releases * release on push to latest * fix yaml * fix yaml * fix yaml * remove unnecessary * remove unnecessary * prettier * Update collab errors, related cleanup (#2971) * install (#2972) * Improve docs around the React plugins page (#2976) * Improve docs around the React plugins page * Improve docs around the React plugins page * config (#2977) * Clean up redundant newlines during pasting (#2969) * Cleanup newlines unless its preformatted element * Update docs * push config (#2979) * add ssh key * add back config * merge from main * merge from main * fix versioning for ff merge (#2983) * remove ff merge from release (#2984) * Fixed exportDOM for paragraph node (#2981) * export DOM for paragraph node * Fixed export DOM for paragraph node * docs: Fix URL of rich-text and plain-text (#2985) * docs: loadContent clarification (#2989) * Fix insert column header bug (#2995) * Fix WWW import rewrite for React (#2996) * bad toc types * fix react rename * Fix www exports (#2994) * [Automated Releases] Add logging and dry run to release script (#2986) * add logs to release script * add dry run to release script * adjust dry run script * add tag * dont paginate changelog output * auto-update changelog * fix changelog * fix import * async * cleanup * fix * fix * Add DEPRECATED prefix to Grid APIs (#2966) * Rm unused helpers from older markdown code (#2998) * ElementNode -> isTopLevel() (#3001) * Capture pendingDecorators after garbage collecting detached decorators (#2999) * v0.4.2-next.0 Co-authored-by: Tyler Bainbridge <tyler@tylerbainbridge.com> Co-authored-by: Christian Ratz <2630316+digitalgopnik@users.noreply.github.com> Co-authored-by: Christian Ratz <christian.ratz@b-ite.de> Co-authored-by: Patrick McCullough <57294106+pgmccullough@users.noreply.github.com> Co-authored-by: Dominic Gannaway <trueadm@users.noreply.github.com> Co-authored-by: Maksim Horbachevsky <fantactuka@gmail.com> Co-authored-by: Hafiz <muhamm3dhafiz@gmail.com> Co-authored-by: kimulaco <11986753+kimulaco@users.noreply.github.com> Co-authored-by: ly3xqhl8g9 <ly3xqhl8g9@plurid.com> Co-authored-by: Gerard Rovira <zurfyx@users.noreply.github.com> Co-authored-by: Adrien Wald <adrien@genei.io> Co-authored-by: Lexical GitHub Actions Bot <>
- Loading branch information
1 parent
343a006
commit a58b761
Showing
92 changed files
with
1,116 additions
and
842 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Publish to NPM | ||
on: | ||
push: | ||
branches: | ||
- next | ||
- latest | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
# Setup .npmrc file to publish to npm | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm run prepare-release | ||
- run: node ./scripts/npm/release.js --non-interactive --dry-run=${{ secrets.RELEASE_DRY_RUN }} --channel $GITHUB_REF_NAME | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Create New Release Branch | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
increment: | ||
description: 'Version Increment' | ||
required: true | ||
default: 'prerelease' | ||
type: choice | ||
options: | ||
- prerelease | ||
- patch | ||
- minor | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ssh-key: ${{ secrets.SSH_KEY }} | ||
fetch-depth: 0 | ||
# Setup .npmrc file to publish to npm | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: | | ||
git config user.name "Lexical GitHub Actions Bot" | ||
git config user.email "<>" | ||
- run: npm install | ||
- run: npm run increment-version -- --i $INCREMENT | ||
env: | ||
INCREMENT: ${{ inputs.increment }} | ||
- run: git push -u git@github.com:facebook/lexical.git --follow-tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.