@torthu/jacketui-bring 1.0.0 → 1.0.1

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,4 @@
1
- import { exponentialBackoff, } from "../helpers/exponentialBackoff";
1
+ import { exponentialBackoff, } from "../helpers/exponentialBackoff.js";
2
2
  /** backoff(options?: BackoffOptions): BringInitDecorator
3
3
  *
4
4
  * Sets a exponential backoff function for retrying requests.
@@ -1,4 +1,4 @@
1
- import { randomJitter } from "../helpers/randomJitter";
1
+ import { randomJitter } from "../helpers/randomJitter.js";
2
2
  /** jitter(options?: JitterOptions): BringInitDecorator
3
3
  *
4
4
  * Sets a jitter function for retrying requests.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@torthu/jacketui-bring",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Improved fetch API with retry, timeout, and more.",
5
5
  "author": {
6
6
  "name": "Torstein Thune",
@@ -28,7 +28,7 @@
28
28
  "scripts": {
29
29
  "prepublish": "npm run build",
30
30
  "typecheck": "tsc --noEmit",
31
- "build": "rimraf ./dist && tsc --project tsconfig.json && fix-imports --tsconfig tsconfig.json",
31
+ "build": "rimraf ./dist && tsc --project tsconfig.json && fix-imports --dir ./dist",
32
32
  "test": "vitest run",
33
33
  "coverage": "vitest run --coverage"
34
34
  },