@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 +6 -0
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
- /package/dist/cjs/{abstract-pikku-fetch.d.ts → core-pikku-fetch.d.ts} +0 -0
- /package/dist/cjs/{abstract-pikku-fetch.js → core-pikku-fetch.js} +0 -0
- /package/dist/esm/{abstract-pikku-fetch.d.ts → core-pikku-fetch.d.ts} +0 -0
- /package/dist/esm/{abstract-pikku-fetch.js → core-pikku-fetch.js} +0 -0
- /package/src/{abstract-pikku-fetch.ts → core-pikku-fetch.ts} +0 -0
package/CHANGELOG.md
CHANGED
package/dist/cjs/index.d.ts
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
*
|
|
7
7
|
* @module @pikku/fetch
|
|
8
8
|
*/
|
|
9
|
-
export { CorePikkuFetch, CorePikkuFetchOptions, HTTPMethod, } from './
|
|
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
|
|
13
|
-
Object.defineProperty(exports, "CorePikkuFetch", { enumerable: true, get: function () { return
|
|
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; } });
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
*
|
|
7
7
|
* @module @pikku/fetch
|
|
8
8
|
*/
|
|
9
|
-
export { CorePikkuFetch, CorePikkuFetchOptions, HTTPMethod, } from './
|
|
9
|
+
export { CorePikkuFetch, CorePikkuFetchOptions, HTTPMethod, } from './core-pikku-fetch.js';
|
|
10
10
|
export { corePikkuFetch } from './pikku-fetch.js';
|
package/dist/esm/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/
|
|
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/
|
|
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.
|
|
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": "
|
|
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
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|