@camunda/linting 0.3.2 → 0.3.5

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/CHANGELOG.md CHANGED
@@ -6,6 +6,18 @@ All notable changes to [@camunda/linting](https://github.com/camunda/linting) ar
6
6
 
7
7
  ___Note:__ Yet to be released changes appear here._
8
8
 
9
+ ## 0.3.5
10
+
11
+ * `FIX`: ignore null properties ([#39](https://github.com/camunda/bpmnlint-plugin-camunda-compat/pull/39))
12
+
13
+ ## 0.3.4
14
+
15
+ * `FIX`: make `bpmn-moddle` and `zeebe-bpmn-moddle` production dependencies ([#9](https://github.com/camunda/linting/pull/9))
16
+
17
+ ## 0.3.3
18
+
19
+ * `FIX`: fix business rule task error message in properties panel ([#8](https://github.com/camunda/linting/pull/8))
20
+
9
21
  ## 0.3.2
10
22
 
11
23
  * `FIX`: make `modeler-moddle` dependency ([e9d53714](https://github.com/camunda/linting/commit/e9d5371456cd2e783ae2c7c0c3ca0f4c5047db1a))
@@ -108,7 +108,7 @@ export function getErrors(reports, element) {
108
108
  }
109
109
 
110
110
  export function getErrorMessage(id) {
111
- if (id === 'businessRuleTaskImplementation') {
111
+ if (id === 'businessRuleImplementation') {
112
112
  return 'Implementation must be defined.';
113
113
  }
114
114
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/linting",
3
- "version": "0.3.2",
3
+ "version": "0.3.5",
4
4
  "description": "Linting for Camunda Platform",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -19,20 +19,20 @@
19
19
  },
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
+ "bpmn-moddle": "^7.1.2",
22
23
  "bpmnlint": "^7.8.0",
23
- "bpmnlint-plugin-camunda-compat": "^0.9.1",
24
+ "bpmnlint-plugin-camunda-compat": "^0.9.2",
24
25
  "bpmnlint-utils": "^1.0.2",
25
- "modeler-moddle": "^0.2.0"
26
+ "modeler-moddle": "^0.2.0",
27
+ "zeebe-bpmn-moddle": "^0.12.1"
26
28
  },
27
29
  "devDependencies": {
28
- "bpmn-moddle": "^7.1.2",
29
30
  "chai": "^4.3.6",
30
31
  "eslint": "^4.11.0",
31
32
  "eslint-plugin-bpmn-io": "^0.4.1",
32
33
  "esm": "^3.2.25",
33
34
  "min-dash": "^3.8.1",
34
- "mocha": "^4.0.1",
35
- "zeebe-bpmn-moddle": "^0.12.1"
35
+ "mocha": "^4.0.1"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "bpmn-js-properties-panel": "1.3.x"