@rcompat/test 0.8.3 → 0.9.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/lib/private/Env.d.ts +8 -0
- package/lib/private/Env.js +2 -0
- package/lib/private/env.env.d.ts +7 -0
- package/lib/private/env.env.js +8 -0
- package/lib/private/index.d.ts +4 -0
- package/lib/public/index.d.ts +1 -1
- package/package.json +3 -3
- package/lib/public/Asserter.d.ts +0 -2
- package/lib/public/Asserter.js +0 -2
- package/lib/public/Result.d.ts +0 -3
- package/lib/public/Result.js +0 -2
- package/lib/public/Test.d.ts +0 -3
- package/lib/public/Test.js +0 -2
package/lib/private/index.d.ts
CHANGED
|
@@ -5,4 +5,8 @@ declare const _default: {
|
|
|
5
5
|
ended(end: End): void;
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
|
+
export type { default as Asserter } from "#Asserter";
|
|
9
|
+
export type { default as Env } from "#Env";
|
|
10
|
+
export type { default as Result } from "#Result";
|
|
11
|
+
export type { default as Test } from "#Test";
|
|
8
12
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/public/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rcompat/test",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Standard library testing",
|
|
5
5
|
"bugs": "https://github.com/rcompat/rcompat/issues",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"directory": "packages/test"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@rcompat/
|
|
19
|
-
"@rcompat/
|
|
18
|
+
"@rcompat/type": "^0.9.0",
|
|
19
|
+
"@rcompat/fs": "^0.25.3"
|
|
20
20
|
},
|
|
21
21
|
"type": "module",
|
|
22
22
|
"imports": {
|
package/lib/public/Asserter.d.ts
DELETED
package/lib/public/Asserter.js
DELETED
package/lib/public/Result.d.ts
DELETED
package/lib/public/Result.js
DELETED
package/lib/public/Test.d.ts
DELETED
package/lib/public/Test.js
DELETED