@schemastore/tox 1.0.1 → 1.0.2

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +8 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,5 +10,5 @@ Files were exported from https://github.com/ffflorian/schemastore-updater/tree/m
10
10
 
11
11
  ## Additional Details
12
12
 
13
- * Last updated: Sun, Mar 15, 2026, 21:50:33 GMT
13
+ * Last updated: Mon, Mar 23, 2026, 05:32:50 GMT
14
14
  * Dependencies: none
package/index.d.ts CHANGED
@@ -359,6 +359,10 @@ export interface EnvRunBase {
359
359
  * the commands to be called after testing
360
360
  */
361
361
  commands_post?: Subs[][];
362
+ /**
363
+ * run commands_post even after interrupt (SIGINT), allow second interrupt to cancel
364
+ */
365
+ interrupt_post_commands?: boolean;
362
366
  /**
363
367
  * commands to run before the environment is removed during recreation (e.g. cache cleanup)
364
368
  */
@@ -638,6 +642,10 @@ export interface EnvRunBase1 {
638
642
  * the commands to be called after testing
639
643
  */
640
644
  commands_post?: Subs[][];
645
+ /**
646
+ * run commands_post even after interrupt (SIGINT), allow second interrupt to cancel
647
+ */
648
+ interrupt_post_commands?: boolean;
641
649
  /**
642
650
  * commands to run before the environment is removed during recreation (e.g. cache cleanup)
643
651
  */
package/package.json CHANGED
@@ -6,5 +6,5 @@
6
6
  "private": false,
7
7
  "repository": "https://github.com/ffflorian/schemastore-updater",
8
8
  "types": "index.d.ts",
9
- "version": "1.0.1"
9
+ "version": "1.0.2"
10
10
  }