testilo 32.0.1 → 32.1.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/README.md +1 -1
- package/package.json +1 -1
- package/procs/score/tic40.js +0 -1
- package/script.js +1 -1
package/README.md
CHANGED
|
@@ -326,7 +326,7 @@ The `call` module will save the script as a JSON file in the `scripts` subdirect
|
|
|
326
326
|
|
|
327
327
|
The `script` module will use the value of the `SEND_REPORT_TO` environment variable as the value of the `sendReportTo` property of the script, if that variable exists, and otherwise will leave that property with an empty-string value.
|
|
328
328
|
|
|
329
|
-
When the `script` module creates a script for you, it does not ask you for all of the other options that the script may require. Instead, it chooses default options. For example, it sets the values of `isolate` and `strict` to `true
|
|
329
|
+
When the `script` module creates a script for you, it does not ask you for all of the other options that the script may require. Instead, it chooses default options. For example, it sets the values of `isolate` and `strict` to `true`, and it sets the `withNewContent` property of the `ibm` tool to `false` to prevent occasional infinite loops or crashes when targets cause HTTP2 protocol errors. After you invoke `script`, you can edit the script that it creates to revise options.
|
|
330
330
|
|
|
331
331
|
### Merge
|
|
332
332
|
|
package/package.json
CHANGED
package/procs/score/tic40.js
CHANGED
package/script.js
CHANGED
|
@@ -146,7 +146,7 @@ exports.script = (id, what, options = {}) => {
|
|
|
146
146
|
}
|
|
147
147
|
else if (toolID === 'ibm') {
|
|
148
148
|
toolAct.withItems = true;
|
|
149
|
-
toolAct.withNewContent =
|
|
149
|
+
toolAct.withNewContent = false;
|
|
150
150
|
}
|
|
151
151
|
else if (toolID === 'qualWeb') {
|
|
152
152
|
toolAct.withNewContent = false;
|