@bpmn-io/feel-editor 0.3.0 → 0.4.1
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/dist/index.es.js +480 -20544
- package/dist/index.js +495 -20559
- package/package.json +14 -4
- package/CHANGELOG.md +0 -21
- package/dist/index.es.jsmin +0 -1
- package/dist/index.jsmin +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/feel-editor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Editor for FEEL expressions.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -9,10 +9,13 @@
|
|
|
9
9
|
"module": "dist/index.es.js",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"all": "run-s lint test build",
|
|
12
|
+
"compile:builtins": "node scripts/compileBuiltins.js",
|
|
12
13
|
"test": "karma start",
|
|
13
14
|
"build": "rollup -c",
|
|
14
15
|
"build:watch": "rollup -cw",
|
|
16
|
+
"builtins": "run-s pull:platform-docs compile:builtins",
|
|
15
17
|
"lint": "eslint src",
|
|
18
|
+
"pull:platform-docs": "git -C camunda-platform-docs pull || git clone git@github.com:camunda/camunda-platform-docs.git camunda-platform-docs",
|
|
16
19
|
"start": "SINGLE_START=true npm run dev",
|
|
17
20
|
"dev": "npm test -- --auto-watch --no-single-run",
|
|
18
21
|
"prepare": "run-s build"
|
|
@@ -41,21 +44,27 @@
|
|
|
41
44
|
],
|
|
42
45
|
"license": "MIT",
|
|
43
46
|
"dependencies": {
|
|
44
|
-
"@codemirror/autocomplete": "^6.
|
|
47
|
+
"@codemirror/autocomplete": "^6.1.1",
|
|
45
48
|
"@codemirror/commands": "^6.0.0",
|
|
46
49
|
"@codemirror/language": "^6.0.0",
|
|
47
50
|
"@codemirror/lint": "^6.0.0",
|
|
48
51
|
"@codemirror/state": "^6.0.0",
|
|
49
52
|
"@codemirror/view": "^6.0.0",
|
|
50
53
|
"@lezer/highlight": "^1.0.0",
|
|
51
|
-
"
|
|
54
|
+
"lang-feel": "^0.0.3",
|
|
55
|
+
"lezer-feel": "^0.14.1",
|
|
56
|
+
"min-dom": "^4.0.1"
|
|
52
57
|
},
|
|
53
58
|
"devDependencies": {
|
|
54
|
-
"@rollup/plugin-
|
|
59
|
+
"@rollup/plugin-commonjs": "^22.0.2",
|
|
60
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
61
|
+
"@testing-library/dom": "^8.17.1",
|
|
62
|
+
"@testing-library/user-event": "^14.4.3",
|
|
55
63
|
"chai": "^4.3.6",
|
|
56
64
|
"cross-env": "^7.0.3",
|
|
57
65
|
"eslint": "^7.32.0",
|
|
58
66
|
"eslint-plugin-bpmn-io": "^0.13.0",
|
|
67
|
+
"glob": "^8.0.3",
|
|
59
68
|
"istanbul-instrumenter-loader": "^3.0.1",
|
|
60
69
|
"karma": "^6.3.19",
|
|
61
70
|
"karma-chrome-launcher": "^3.1.1",
|
|
@@ -66,6 +75,7 @@
|
|
|
66
75
|
"karma-mocha": "^2.0.1",
|
|
67
76
|
"karma-sinon-chai": "^2.0.2",
|
|
68
77
|
"karma-webpack": "^5.0.0",
|
|
78
|
+
"marked": "^4.1.0",
|
|
69
79
|
"mocha": "^10.0.0",
|
|
70
80
|
"mocha-test-container-support": "^0.2.0",
|
|
71
81
|
"npm-run-all": "^4.1.5",
|
package/CHANGELOG.md
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to [min-dom](https://github.com/bpmn-io/min-dom) are documented here. We use [semantic versioning](http://semver.org/) for releases.
|
|
4
|
-
|
|
5
|
-
## Unreleased
|
|
6
|
-
|
|
7
|
-
___Note:__ Yet to be released changes appear here._
|
|
8
|
-
|
|
9
|
-
## 0.3.0
|
|
10
|
-
|
|
11
|
-
* `FEAT`: add onLint callback ([#10](https://github.com/bpmn-io/feel-editor/pull/10))
|
|
12
|
-
* `FEAT`: set caret position in `editor.focus` ([#15](https://github.com/bpmn-io/feel-editor/pull/15))
|
|
13
|
-
|
|
14
|
-
## 0.2.0
|
|
15
|
-
|
|
16
|
-
* `FEAT`: add variable suggestion ([#9](https://github.com/bpmn-io/feel-editor/pull/9))
|
|
17
|
-
|
|
18
|
-
## 0.1.0
|
|
19
|
-
|
|
20
|
-
* `FEAT`: initial release, create a FEEL editor with Code highlighting ([#4](https://github.com/bpmn-io/feel-editor/pull/4))
|
|
21
|
-
* `FEAT`: highlight syntax errors ([#7](https://github.com/bpmn-io/feel-editor/pull/7))
|