@stuntman/client 0.3.1 → 0.3.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.
- package/dist/apiClient.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/apiClient.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { Client as StuntmanClient } from './apiClient';
|
|
2
|
-
export { ruleBuilder } from './ruleBuilder';
|
|
1
|
+
export { Client as StuntmanClient } from './apiClient.js';
|
|
2
|
+
export { ruleBuilder } from './ruleBuilder.js';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { Client as StuntmanClient } from './apiClient';
|
|
2
|
-
export { ruleBuilder } from './ruleBuilder';
|
|
1
|
+
export { Client as StuntmanClient } from './apiClient.js';
|
|
2
|
+
export { ruleBuilder } from './ruleBuilder.js';
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stuntman/client",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Stuntman - HTTP proxy / mock API client",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"author": "Andrzej Pasterczyk",
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@stuntman/shared": "^0.3.
|
|
36
|
+
"@stuntman/shared": "^0.3.2",
|
|
37
37
|
"serialize-javascript": "6.0.2",
|
|
38
38
|
"uuid": "9.0.1"
|
|
39
39
|
},
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"scripts": {
|
|
57
57
|
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test LOG_LEVEL=silent NODE_CONFIG_STRICT_MODE= SUPPRESS_NO_CONFIG_WARNING=1 jest --coverage",
|
|
58
58
|
"clean": "rm -fr dist",
|
|
59
|
-
"build": "tsc",
|
|
59
|
+
"build": "tsc && tsc-alias",
|
|
60
60
|
"lint": "prettier --check \"./{src,test}/**/*\" && eslint \"./{src,test}/**/*\"",
|
|
61
61
|
"lint:fix": "prettier --write \"./{src,test}/**/*\" && eslint \"./{src,test}/**/*\" --fix"
|
|
62
62
|
}
|