bpmnlint-plugin-camunda-compat 1.3.2 → 1.4.0

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.
Files changed (2) hide show
  1. package/index.js +12 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -55,7 +55,15 @@ const camundaCloud83Rules = withConfig({
55
55
 
56
56
  const camundaPlatform719Rules = withConfig({
57
57
  'history-time-to-live': 'error'
58
- }, { platform: 'camunda-platform', version: '7.19' });
58
+ }, {
59
+ platform: 'camunda-platform',
60
+ version: '7.19'
61
+ });
62
+
63
+ const camundaPlatform720Rules = withConfig(camundaPlatform719Rules, {
64
+ platform: 'camunda-platform',
65
+ version: '7.20'
66
+ });
59
67
 
60
68
  module.exports = {
61
69
  configs: {
@@ -85,6 +93,9 @@ module.exports = {
85
93
  },
86
94
  'camunda-platform-7-19': {
87
95
  rules: camundaPlatform719Rules
96
+ },
97
+ 'camunda-platform-7-20': {
98
+ rules: camundaPlatform720Rules
88
99
  }
89
100
  }
90
101
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bpmnlint-plugin-camunda-compat",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "description": "A bpmnlint plug-in for Camunda Platform compatibility",
5
5
  "main": "index.js",
6
6
  "scripts": {