@pikku/fetch 0.6.1 → 0.6.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pikku/fetch
2
2
 
3
+ ## 0.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 3062086: fix: renaming AbstractFetch/Websocket to core
8
+
3
9
  ## 0.6.1
4
10
 
5
11
  ### Patch Changes
@@ -6,5 +6,5 @@
6
6
  *
7
7
  * @module @pikku/fetch
8
8
  */
9
- export { CorePikkuFetch, CorePikkuFetchOptions, HTTPMethod, } from './abstract-pikku-fetch.js';
9
+ export { CorePikkuFetch, CorePikkuFetchOptions, HTTPMethod, } from './core-pikku-fetch.js';
10
10
  export { corePikkuFetch } from './pikku-fetch.js';
package/dist/cjs/index.js CHANGED
@@ -9,7 +9,7 @@
9
9
  */
10
10
  Object.defineProperty(exports, "__esModule", { value: true });
11
11
  exports.corePikkuFetch = exports.CorePikkuFetch = void 0;
12
- var abstract_pikku_fetch_js_1 = require("./abstract-pikku-fetch.js");
13
- Object.defineProperty(exports, "CorePikkuFetch", { enumerable: true, get: function () { return abstract_pikku_fetch_js_1.CorePikkuFetch; } });
12
+ var core_pikku_fetch_js_1 = require("./core-pikku-fetch.js");
13
+ Object.defineProperty(exports, "CorePikkuFetch", { enumerable: true, get: function () { return core_pikku_fetch_js_1.CorePikkuFetch; } });
14
14
  var pikku_fetch_js_1 = require("./pikku-fetch.js");
15
15
  Object.defineProperty(exports, "corePikkuFetch", { enumerable: true, get: function () { return pikku_fetch_js_1.corePikkuFetch; } });
@@ -6,5 +6,5 @@
6
6
  *
7
7
  * @module @pikku/fetch
8
8
  */
9
- export { CorePikkuFetch, CorePikkuFetchOptions, HTTPMethod, } from './abstract-pikku-fetch.js';
9
+ export { CorePikkuFetch, CorePikkuFetchOptions, HTTPMethod, } from './core-pikku-fetch.js';
10
10
  export { corePikkuFetch } from './pikku-fetch.js';
package/dist/esm/index.js CHANGED
@@ -6,5 +6,5 @@
6
6
  *
7
7
  * @module @pikku/fetch
8
8
  */
9
- export { CorePikkuFetch, } from './abstract-pikku-fetch.js';
9
+ export { CorePikkuFetch, } from './core-pikku-fetch.js';
10
10
  export { corePikkuFetch } from './pikku-fetch.js';
@@ -1 +1 @@
1
- {"root":["../src/abstract-pikku-fetch.ts","../src/index.ts","../src/pikku-fetch.ts","../src/transform-date.ts"],"version":"5.7.3"}
1
+ {"root":["../src/core-pikku-fetch.ts","../src/index.ts","../src/pikku-fetch.ts","../src/transform-date.ts"],"version":"5.7.3"}
@@ -1 +1 @@
1
- {"root":["../src/abstract-pikku-fetch.ts","../src/index.ts","../src/pikku-fetch.ts","../src/transform-date.ts"],"version":"5.7.3"}
1
+ {"root":["../src/core-pikku-fetch.ts","../src/index.ts","../src/pikku-fetch.ts","../src/transform-date.ts"],"version":"5.7.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/fetch",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "author": "yasser.fadl@gmail.com",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -17,7 +17,7 @@
17
17
  "build:esm": "tsc -b && echo '{\"type\": \"module\"}' > dist/esm/package.json",
18
18
  "build:cjs": "tsc -b tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
19
19
  "build": "yarn build:esm && yarn build:cjs",
20
- "ncu": "ncu -x '/.*glob.*/'",
20
+ "ncu": "npx npm-check-updates -x '/.*glob.*/'",
21
21
  "release": "yarn build && npm test",
22
22
  "test": "bash run-tests.sh",
23
23
  "test:watch": "bash run-tests.sh --watch",
package/src/index.ts CHANGED
@@ -11,5 +11,5 @@ export {
11
11
  CorePikkuFetch,
12
12
  CorePikkuFetchOptions,
13
13
  HTTPMethod,
14
- } from './abstract-pikku-fetch.js'
14
+ } from './core-pikku-fetch.js'
15
15
  export { corePikkuFetch } from './pikku-fetch.js'