@blackglory/estore-js 0.1.5 → 0.1.6

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.
@@ -1,4 +1,2 @@
1
1
  export * from './client';
2
2
  export * from './manager';
3
- export * as HTTPStatus from '@blackglory/http-status';
4
- export { AbortError } from 'extra-fetch';
@@ -10,10 +10,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
- exports.AbortError = exports.HTTPStatus = void 0;
14
13
  __exportStar(require("./client"), exports);
15
14
  __exportStar(require("./manager"), exports);
16
- exports.HTTPStatus = require("@blackglory/http-status");
17
- var extra_fetch_1 = require("extra-fetch");
18
- Object.defineProperty(exports, "AbortError", { enumerable: true, get: function () { return extra_fetch_1.AbortError; } });
19
15
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,2CAAwB;AACxB,4CAAyB;AACzB,wDAAqD;AACrD,2CAAwC;AAA/B,yGAAA,UAAU,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAwB;AACxB,4CAAyB"}
@@ -1,4 +1,2 @@
1
1
  export * from './client';
2
2
  export * from './manager';
3
- export * as HTTPStatus from '@blackglory/http-status';
4
- export { AbortError } from 'extra-fetch';
@@ -10,10 +10,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
- exports.AbortError = exports.HTTPStatus = void 0;
14
13
  __exportStar(require("./client"), exports);
15
14
  __exportStar(require("./manager"), exports);
16
- exports.HTTPStatus = require("@blackglory/http-status");
17
- var extra_fetch_1 = require("extra-fetch");
18
- Object.defineProperty(exports, "AbortError", { enumerable: true, get: function () { return extra_fetch_1.AbortError; } });
19
15
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,2CAAwB;AACxB,4CAAyB;AACzB,wDAAqD;AACrD,2CAAwC;AAA/B,yGAAA,UAAU,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAwB;AACxB,4CAAyB"}
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@blackglory/estore-js",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "",
5
5
  "keywords": [],
6
- "files": ["lib"],
6
+ "files": [
7
+ "lib"
8
+ ],
7
9
  "main": "lib/es2018/index.js",
8
10
  "types": "lib/es2018/index.d.ts",
9
11
  "repository": "git@github.com:BlackGlory/estore-js.git",
@@ -30,6 +32,7 @@
30
32
  }
31
33
  },
32
34
  "devDependencies": {
35
+ "@blackglory/http-status": "^1.0.2",
33
36
  "@blackglory/jest-matchers": "^0.2.1",
34
37
  "@commitlint/cli": "^17.1.2",
35
38
  "@commitlint/config-conventional": "^17.1.0",
@@ -37,6 +40,7 @@
37
40
  "@typescript-eslint/eslint-plugin": "^5.10.2",
38
41
  "@typescript-eslint/parser": "^5.10.2",
39
42
  "eslint": "^8.8.0",
43
+ "extra-fetch": "^1.8.4",
40
44
  "husky": "4",
41
45
  "jest": "^27.5.0",
42
46
  "msw": "^0.36.8",
@@ -51,12 +55,14 @@
51
55
  },
52
56
  "dependencies": {
53
57
  "@blackglory/errors": "^2.1.0",
54
- "@blackglory/http-status": "^1.0.1",
55
58
  "@blackglory/types": "^1.3.0",
56
59
  "extra-abort": "^0.1.1",
57
- "extra-fetch": "^1.8.5",
58
60
  "extra-request": "^4.0.1",
59
61
  "extra-response": "^0.3.9",
60
62
  "justypes": "^3.0.0"
63
+ },
64
+ "peerDependencies": {
65
+ "@blackglory/http-status": "^1.0.2",
66
+ "extra-fetch": "^1.8.4"
61
67
  }
62
68
  }