@wordpress/priority-queue 3.36.1-next.8fd3f8831.0 → 3.37.1-next.79a2f3cdd.0
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/LICENSE.md +1 -1
- package/build/index.cjs +1 -1
- package/build-module/{index.js → index.mjs} +2 -2
- package/build-module/{request-idle-callback.js → request-idle-callback.mjs} +1 -1
- package/build-module/types.mjs +1 -0
- package/package.json +7 -5
- package/build-module/types.js +0 -1
- /package/build-module/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/{request-idle-callback.js.map → request-idle-callback.mjs.map} +0 -0
- /package/build-module/{types.js.map → types.mjs.map} +0 -0
package/LICENSE.md
CHANGED
package/build/index.cjs
CHANGED
|
@@ -33,7 +33,7 @@ __export(index_exports, {
|
|
|
33
33
|
createQueue: () => createQueue
|
|
34
34
|
});
|
|
35
35
|
module.exports = __toCommonJS(index_exports);
|
|
36
|
-
var import_request_idle_callback = __toESM(require("./request-idle-callback.cjs")
|
|
36
|
+
var import_request_idle_callback = __toESM(require("./request-idle-callback.cjs"));
|
|
37
37
|
var createQueue = () => {
|
|
38
38
|
const waitingList = /* @__PURE__ */ new Map();
|
|
39
39
|
let isRunning = false;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// packages/priority-queue/src/index.ts
|
|
2
|
-
import requestIdleCallback from "./request-idle-callback.
|
|
2
|
+
import requestIdleCallback from "./request-idle-callback.mjs";
|
|
3
3
|
var createQueue = () => {
|
|
4
4
|
const waitingList = /* @__PURE__ */ new Map();
|
|
5
5
|
let isRunning = false;
|
|
@@ -50,4 +50,4 @@ var createQueue = () => {
|
|
|
50
50
|
export {
|
|
51
51
|
createQueue
|
|
52
52
|
};
|
|
53
|
-
//# sourceMappingURL=index.
|
|
53
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=types.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/priority-queue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.37.1-next.79a2f3cdd.0",
|
|
4
4
|
"description": "Generic browser priority queue.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -30,13 +30,12 @@
|
|
|
30
30
|
"build-types",
|
|
31
31
|
"*.md"
|
|
32
32
|
],
|
|
33
|
-
"type": "module",
|
|
34
33
|
"main": "build/index.cjs",
|
|
35
|
-
"module": "build-module/index.
|
|
34
|
+
"module": "build-module/index.mjs",
|
|
36
35
|
"exports": {
|
|
37
36
|
".": {
|
|
38
37
|
"types": "./build-types/index.d.ts",
|
|
39
|
-
"import": "./build-module/index.
|
|
38
|
+
"import": "./build-module/index.mjs",
|
|
40
39
|
"require": "./build/index.cjs"
|
|
41
40
|
},
|
|
42
41
|
"./package.json": "./package.json"
|
|
@@ -48,8 +47,11 @@
|
|
|
48
47
|
"dependencies": {
|
|
49
48
|
"requestidlecallback": "^0.3.0"
|
|
50
49
|
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/requestidlecallback": "0.3.4"
|
|
52
|
+
},
|
|
51
53
|
"publishConfig": {
|
|
52
54
|
"access": "public"
|
|
53
55
|
},
|
|
54
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "6a324496a37d9a333a11d4d7fe5fb93b8152a5ba"
|
|
55
57
|
}
|
package/build-module/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=types.js.map
|
|
File without changes
|
|
File without changes
|
|
File without changes
|