@spiffcommerce/core 0.9.9 → 0.9.10
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/dist/main.js +2 -2
- package/dist/module.js +2 -2
- package/dist/types.d.ts +1 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export class PromiseQueue<T extends QueueablePromise> {
|
|
|
38
38
|
* Enqueue a new promise.
|
|
39
39
|
* @param promise A new promise to add to the queue.
|
|
40
40
|
*/
|
|
41
|
-
enqueue(promise: T):
|
|
41
|
+
enqueue(promise: T): void;
|
|
42
42
|
/**
|
|
43
43
|
* @returns Returns true when work is being actively processed by this queue.
|
|
44
44
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spiffcommerce/core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.10",
|
|
4
4
|
"description": "Core client API for interacting with the Spiff Commerce backend.",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "parcel build",
|
|
11
11
|
"dev": "ladle serve",
|
|
12
|
-
"test": "jest && tsc --noEmit --isolatedModules",
|
|
12
|
+
"test": "jest && tsc --noEmit --isolatedModules --skipLibCheck",
|
|
13
13
|
"prepare": "yarn run build"
|
|
14
14
|
},
|
|
15
15
|
"targets": {
|