tape-six 0.12.1 → 0.12.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 +2 -0
- package/package.json +3 -2
- package/src/State.js +2 -1
package/README.md
CHANGED
|
@@ -32,6 +32,8 @@ If you are familiar with other TAP-based libraries you'll feel right at home.
|
|
|
32
32
|
|
|
33
33
|
The most recent releases:
|
|
34
34
|
|
|
35
|
+
* 0.12.3 *Technical release: exposed internal classes for external utilities.*
|
|
36
|
+
* 0.12.2 *Fixed a minor serialization issue.*
|
|
35
37
|
* 0.12.1 *Minor Deno-related refactoring, fixed the way tests are triggered.*
|
|
36
38
|
* 0.12.0 *Removed data to avoid serializing non-serializable objects.*
|
|
37
39
|
* 0.11.0 *Minor improvements to the server: temporary redirects, a hyperlink to the web app.*
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tape-six",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.3",
|
|
4
4
|
"description": "TAP the test harness for the modern JavaScript (ES6).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"module": "index.js",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./index.js",
|
|
10
|
-
"./bin/*": "./bin/*"
|
|
10
|
+
"./bin/*": "./bin/*",
|
|
11
|
+
"./*": "./src/*"
|
|
11
12
|
},
|
|
12
13
|
"bin": {
|
|
13
14
|
"tape6": "bin/tape6.js",
|
package/src/State.js
CHANGED