@superutils/promise 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,9 +1,15 @@
1
- # @superutils/promise
1
+ # [@superutils/promise](https://www.npmjs.com/package/@superutils/promise)
2
2
 
3
3
  An extended `Promise` implementation, named `PromisE`, that provides additional features and utilities for easier asynchronous flow control in JavaScript and TypeScript applications.
4
4
 
5
5
  This package offers a drop-in replacement for the native `Promise` that includes status tracking (`.pending`, `.resolved`, `.rejected`) and a suite of powerful static methods for common asynchronous patterns like deferred execution, throttling, and cancellable fetches.
6
6
 
7
+ <div v-if="false">
8
+
9
+ For full API reference check out the [docs page](https://alien45.github.io/superutils/packages/@superutils/promise/).
10
+
11
+ </div>
12
+
7
13
  ## Table of Contents
8
14
 
9
15
  - [Features](#features)
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "url": "https://github.com/alien45/superutils/issues"
5
5
  },
6
6
  "dependencies": {
7
- "@superutils/core": "^1.0.1"
7
+ "@superutils/core": "1.0.3"
8
8
  },
9
9
  "description": "An extended Promise class with extra features and utilities.",
10
10
  "files": [
@@ -12,7 +12,7 @@
12
12
  "README.md",
13
13
  "LICENSE"
14
14
  ],
15
- "homepage": "https://github.com/alien45/superutils/#readme",
15
+ "homepage": "https://alien45.github.io/superutils/packages/@superutils/promise/",
16
16
  "keywords": [
17
17
  "promise",
18
18
  "async",
@@ -23,7 +23,7 @@
23
23
  "main": "dist/index.js",
24
24
  "name": "@superutils/promise",
25
25
  "peerDpendencies": {
26
- "@superutils/core": "^1.0.1"
26
+ "@superutils/core": "1.0.3"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"
@@ -42,5 +42,5 @@
42
42
  "sideEffects": false,
43
43
  "type": "module",
44
44
  "types": "dist/index.d.ts",
45
- "version": "1.0.2"
45
+ "version": "1.0.3"
46
46
  }