@gmb/bitmark-parser-generator 5.31.0 → 5.31.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/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/browser/cjs/index.cjs +11 -3
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/esm/index.js +11 -3
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +11 -3
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +11 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/main.js
CHANGED
|
@@ -3201,10 +3201,17 @@ var CARDSETS = {
|
|
|
3201
3201
|
]
|
|
3202
3202
|
},
|
|
3203
3203
|
{
|
|
3204
|
+
// matchMatrix cells are NESTED (`cells[$s]`), unlike matchPairs'
|
|
3205
|
+
// flat pair object — so `isCaseSensitive` must be written INTO the
|
|
3206
|
+
// cell, mirroring the sibling `example` rule above (`cells: { $s:
|
|
3207
|
+
// {...} }`). The earlier flat `{ isCaseSensitive: '$' }` (copied
|
|
3208
|
+
// from matchPairs) wrote at bit scope, so an authored cell-side
|
|
3209
|
+
// `[@isCaseSensitive:false]` (e.g. on a `++` value) was dropped
|
|
3210
|
+
// instead of landing on the cell. PLAN-122.
|
|
3204
3211
|
key: ConfigKey.property_isCaseSensitive,
|
|
3205
3212
|
exportJsonKey: [
|
|
3206
|
-
{ "@absent": { isCaseSensitive: "$ancestor" } },
|
|
3207
|
-
{ isCaseSensitive: "$" }
|
|
3213
|
+
{ "@absent": { cells: { $s: { isCaseSensitive: "$ancestor" } } } },
|
|
3214
|
+
{ cells: { $s: { isCaseSensitive: "$" } } }
|
|
3208
3215
|
],
|
|
3209
3216
|
description: "Property to indicate if the match is case sensitive.",
|
|
3210
3217
|
format: TagFormat.boolean
|
|
@@ -13861,7 +13868,7 @@ var instance2 = new Config();
|
|
|
13861
13868
|
// src/generated/package_info.ts
|
|
13862
13869
|
var PACKAGE_INFO = {
|
|
13863
13870
|
"name": "@gmb/bitmark-parser-generator",
|
|
13864
|
-
"version": "5.31.
|
|
13871
|
+
"version": "5.31.1",
|
|
13865
13872
|
"license": "ISC"};
|
|
13866
13873
|
var Environment = {
|
|
13867
13874
|
unknown: "",
|
|
@@ -25554,6 +25561,7 @@ function peg$parse(input, options) {
|
|
|
25554
25561
|
return s0;
|
|
25555
25562
|
}
|
|
25556
25563
|
var indentStack = [], indent = "";
|
|
25564
|
+
input = input.replace(/\s+$/, "");
|
|
25557
25565
|
input = input.trimStart();
|
|
25558
25566
|
peg$result = peg$startRuleFunction();
|
|
25559
25567
|
const peg$success = peg$result !== peg$FAILED && peg$currPos === input.length;
|