jodit-react 1.3.39 → 2.0.1-beta.6

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.
@@ -0,0 +1,18 @@
1
+ <!-- BUGS: Please use this template -->
2
+ <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/jodit -->
3
+
4
+ **Jodit Version:** 3.4.xxxxx
5
+
6
+ **Browser:** <!-- Chrome/IE/Safary/FF -->
7
+ **OS:** <!-- Windows/Mac/Linux -->
8
+ **Is React App:** <!-- True/False -->
9
+
10
+ **Code**
11
+
12
+ ```js
13
+ // A *self-contained* demonstration of the problem follows...
14
+ ```
15
+
16
+ **Expected behavior:**
17
+
18
+ **Actual behavior:**
@@ -0,0 +1,14 @@
1
+ <!--
2
+
3
+ Thank you for submitting a pull request!
4
+
5
+ Here's a checklist you might find useful.
6
+ [ ] There is an associated issue that is labelled
7
+ 'Bug' or 'help wanted' or is in the Community milestone
8
+ [ ] Code is up-to-date with the `main` branch
9
+ [ ] You've successfully run `npm test` locally
10
+ [ ] There are new or updated tests validating the change
11
+
12
+ -->
13
+
14
+ Fixes #
@@ -0,0 +1,33 @@
1
+ name: Publish Package to npmjs
2
+
3
+ on:
4
+ push:
5
+ tags: ["*"]
6
+
7
+ jobs:
8
+ release:
9
+
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: actions/setup-node@v3 #Setup Node
15
+ with:
16
+ node-version-file: '.nvmrc'
17
+ cache: 'npm'
18
+
19
+ - name: Install dependencies
20
+ run: |
21
+ npm ci
22
+
23
+ - name: Lint
24
+ run: |
25
+ npm run lint
26
+
27
+ - name: Build
28
+ run: |
29
+ npm run build
30
+
31
+ - name: Publish
32
+ run: |
33
+ NPM_TOKEN=${{ secrets.NPM_TOKEN }} npm publish ./ --access public --tag beta
package/LICENSE CHANGED
File without changes