supertape 13.4.0 → 13.4.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/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2026.07.11, v13.4.1
2
+
3
+ fix:
4
+ - 7953d59 supertape: env: defineEnv: ts: --enable-source-maps
5
+
1
6
  2026.07.11, v13.4.0
2
7
 
3
8
  fix:
package/lib/env/index.js CHANGED
@@ -39,6 +39,7 @@ export const defineEnv = (config, overrides = {}) => {
39
39
 
40
40
  if (key === 'ts' && value) {
41
41
  localEnv += ` ${addLoader('ts')}`;
42
+ localEnv += ` --enable-source-maps`;
42
43
 
43
44
  continue;
44
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "13.4.0",
3
+ "version": "13.4.1",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "📼 Supertape simplest high speed test runner with superpowers",
6
6
  "homepage": "http://github.com/coderaiser/supertape",