suneditor 3.0.0-beta.4 → 3.0.0-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.
- package/CONTRIBUTING.md +4 -2
- package/dist/suneditor.min.js +1 -1
- package/package.json +1 -1
- package/src/core/base/eventManager.js +2 -2
- package/src/core/class/format.js +2 -2
- package/src/core/class/offset.js +1 -1
- package/src/core/class/selection.js +4 -7
- package/src/core/editor.js +1 -1
- package/src/editorInjector/_core.js +0 -5
- package/src/editorInjector/index.js +0 -2
- package/src/modules/Controller.js +1 -1
- package/src/plugins/dropdown/table.js +1 -1
- package/types/core/editor.d.ts +4 -2
- package/types/editorInjector/_core.d.ts +0 -5
- package/types/editorInjector/index.d.ts +0 -2
package/CONTRIBUTING.md
CHANGED
|
@@ -27,6 +27,8 @@ Node.js **v14 or higher** is required to build and test.
|
|
|
27
27
|
|
|
28
28
|
## ✅ Before Submitting a PR
|
|
29
29
|
|
|
30
|
+
> [commit-guide](./guide/commit-types.md)
|
|
31
|
+
|
|
30
32
|
- Check that no one is working on the same thing in [open issues](https://github.com/jihong88/suneditor/issues).
|
|
31
33
|
- For new features or major changes, please open an issue first to gather feedback.
|
|
32
34
|
- Use a **feature branch** (not `master`) for your pull request.
|
|
@@ -139,6 +141,8 @@ A quick overview of the `src/` directory:
|
|
|
139
141
|
|
|
140
142
|
## 🚀 Useful Commands
|
|
141
143
|
|
|
144
|
+
> [scripts-guide](./guide/scripts-guide.md)
|
|
145
|
+
|
|
142
146
|
```bash
|
|
143
147
|
# Start local dev server
|
|
144
148
|
npm run dev
|
|
@@ -172,8 +176,6 @@ npm run i18n-build
|
|
|
172
176
|
npm run test
|
|
173
177
|
```
|
|
174
178
|
|
|
175
|
-
> [scripts/README](https://github.com/JiHong88/suneditor/blob/develop/scripts/README.md)
|
|
176
|
-
|
|
177
179
|
---
|
|
178
180
|
|
|
179
181
|
Thanks for contributing 💛
|