@grexx/grexxlinter 0.2.364 → 0.2.383
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/cli.js +1 -1
- package/package.json +1 -1
- package/schemas/template/date-function.schema.json +1 -1
- package/schemas/template/html.schema.json +1 -1
- package/schemas/template/if.schema.json +1 -1
- package/schemas/template/iterator.schema.json +1 -1
- package/schemas/template/multivalue.schema.json +1 -1
- package/schemas/template/picklist.schema.json +1 -1
- package/schemas/template/util.schema.json +1 -1
package/cli.js
CHANGED
|
@@ -15050,7 +15050,7 @@ function isLintableYaml(text) {
|
|
|
15050
15050
|
// src/cli.ts
|
|
15051
15051
|
var PARALLEL_THRESHOLD = 200;
|
|
15052
15052
|
var MAX_WORKERS = 8;
|
|
15053
|
-
var VERSION = true ? "0.2.
|
|
15053
|
+
var VERSION = true ? "0.2.383" : "0.0.0-dev";
|
|
15054
15054
|
function isNewer(latest, current) {
|
|
15055
15055
|
const a = latest.split(".").map(Number);
|
|
15056
15056
|
const b = current.split(".").map(Number);
|
package/package.json
CHANGED