nginx-lint-plugin 0.10.2 → 0.10.3
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/README.md +1 -1
- package/package.json +2 -2
- package/wasm/parser/parser.core.wasm +0 -0
- package/wasm/parser/parser.js +3 -2
package/README.md
CHANGED
|
@@ -122,7 +122,7 @@ The WIT definition file is bundled with this package, so `jco componentize` can
|
|
|
122
122
|
"test": "tsc && node --test dist/plugin.test.js"
|
|
123
123
|
},
|
|
124
124
|
"dependencies": {
|
|
125
|
-
"nginx-lint-plugin": "^0.10.
|
|
125
|
+
"nginx-lint-plugin": "^0.10.3"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
128
128
|
"@bytecodealliance/componentize-js": "^0.19",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nginx-lint-plugin",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@bytecodealliance/jco": "^1",
|
|
30
|
-
"typescript": "^
|
|
30
|
+
"typescript": "^6.0.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
Binary file
|
package/wasm/parser/parser.js
CHANGED
|
@@ -1527,8 +1527,9 @@ class Waitable {
|
|
|
1527
1527
|
|
|
1528
1528
|
const ready = readyFn();
|
|
1529
1529
|
if (ready && ASYNC_DETERMINISM === 'random') {
|
|
1530
|
-
const coinFlip = _coinFlip();
|
|
1531
|
-
if (coinFlip) { return true }
|
|
1530
|
+
// const coinFlip = _coinFlip();
|
|
1531
|
+
// if (coinFlip) { return true }
|
|
1532
|
+
return true;
|
|
1532
1533
|
}
|
|
1533
1534
|
|
|
1534
1535
|
const keepGoing = await this.immediateSuspend({ cancellable, readyFn });
|