From b7052b574a58065e642eddd0e6f68a66c89d590e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Feb 2021 23:12:12 +0100 Subject: [PATCH 1/4] Bump actions/cache from v2 to v2.1.4 (#146) Bumps [actions/cache](https://github.com/actions/cache) from v2 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 115bee705..a28e89f15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Load cached dependencies - uses: actions/cache@v2 + uses: actions/cache@v2.1.4 id: cache with: path: | @@ -144,7 +144,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Load cached dependencies - uses: actions/cache@v2 + uses: actions/cache@v2.1.4 id: cache with: path: | From e8232dd73799c8f48b921f3d034ea6afa572ce8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Tue, 9 Feb 2021 10:06:13 +0100 Subject: [PATCH 2/4] add basic enter command --- docs/src/demos/Examples/Default/index.vue | 15 ++++++++++ packages/core/src/Editor.ts | 28 ++++++++++++++++++ packages/core/src/commands/enter.ts | 36 +++++++++++++++++++++++ packages/core/src/extensions/commands.ts | 2 ++ 4 files changed, 81 insertions(+) create mode 100644 packages/core/src/commands/enter.ts diff --git a/docs/src/demos/Examples/Default/index.vue b/docs/src/demos/Examples/Default/index.vue index c951a44a7..19049ce40 100644 --- a/docs/src/demos/Examples/Default/index.vue +++ b/docs/src/demos/Examples/Default/index.vue @@ -1,6 +1,21 @@