bpmnlint-plugin-camunda-compat 2.34.2 → 2.35.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.
- package/index.js +9 -1
- package/package.json +1 -1
package/index.js
CHANGED
@@ -132,6 +132,11 @@ const camundaPlatform723Rules = withConfig(camundaPlatform721Rules, {
|
|
132
132
|
version: '7.23'
|
133
133
|
});
|
134
134
|
|
135
|
+
const camundaPlatform724Rules = withConfig(camundaPlatform723Rules, {
|
136
|
+
platform: 'camunda-platform',
|
137
|
+
version: '7.24'
|
138
|
+
});
|
139
|
+
|
135
140
|
const rules = {
|
136
141
|
'ad-hoc-sub-process': './rules/camunda-cloud/ad-hoc-sub-process',
|
137
142
|
'element-type': './rules/camunda-cloud/element-type',
|
@@ -238,6 +243,9 @@ const configs = {
|
|
238
243
|
},
|
239
244
|
'camunda-platform-7-23': {
|
240
245
|
rules: camundaPlatform723Rules
|
246
|
+
},
|
247
|
+
'camunda-platform-7-24': {
|
248
|
+
rules: camundaPlatform724Rules
|
241
249
|
}
|
242
250
|
};
|
243
251
|
|
@@ -275,4 +283,4 @@ function withConfig(rules, config) {
|
|
275
283
|
}
|
276
284
|
|
277
285
|
return rulesWithConfig;
|
278
|
-
}
|
286
|
+
}
|