jodit-react 2.0.1-beta.9 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/new-version.yml +2 -2
- package/.github/workflows/release.yml +1 -1
- package/.nvmrc +1 -1
- package/CHANGELOG.md +4 -0
- package/build/jodit-react.js +1 -1
- package/build/jodit-react.js.LICENSE.txt +1 -1
- package/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/JoditEditor.js +7 -2
|
@@ -21,12 +21,12 @@ jobs:
|
|
|
21
21
|
- name: Create local changes
|
|
22
22
|
run: |
|
|
23
23
|
npm ci
|
|
24
|
-
npm
|
|
24
|
+
npm i jodit
|
|
25
25
|
|
|
26
26
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
27
27
|
git config --local user.name "github-actions[bot]"
|
|
28
28
|
|
|
29
|
-
npm version
|
|
29
|
+
npm version patch --no-git-tag-version
|
|
30
30
|
npm run git
|
|
31
31
|
|
|
32
32
|
- name: Push changes
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
18.17.1
|