supertape 12.0.8 → 12.0.9

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.01.09, v12.0.9
2
+
3
+ fix:
4
+ - 07e4f3d supertape: readme: require -> import
5
+
1
6
  2026.01.09, v12.0.8
2
7
 
3
8
  feature:
package/README.md CHANGED
@@ -225,7 +225,7 @@ Generate a new test that will be skipped over.
225
225
  Extend base assertions with more:
226
226
 
227
227
  ```js
228
- const {extend} = require('supertape');
228
+ import {extend} from 'supertape';
229
229
  const test = extend({
230
230
  transform: (operator) => (a, b, message = 'should transform') => {
231
231
  const {is, output} = operator.equal(a + 1, b - 1);
@@ -246,7 +246,7 @@ test('assertion', (t) => {
246
246
  ## Example
247
247
 
248
248
  ```js
249
- const test = require('supertape');
249
+ import {test} from 'supertape';
250
250
 
251
251
  test('lib: arguments', async (t) => {
252
252
  throw Error('hello');
package/lib/help.js CHANGED
@@ -12,4 +12,3 @@ export const help = () => {
12
12
 
13
13
  return result.join('\n') + '\n';
14
14
  };
15
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "12.0.8",
3
+ "version": "12.0.9",
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",