@weborigami/async-tree 0.6.6 → 0.6.8
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/index.ts +6 -0
- package/package.json +1 -1
- package/shared.js +2 -1
package/index.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Origami is a JavaScript project, but we use TypeScript as an internal tool to
|
|
3
|
+
* confirm our code is type safe.
|
|
4
|
+
*/
|
|
5
|
+
|
|
1
6
|
import AsyncMap from "./src/drivers/AsyncMap.js";
|
|
2
7
|
|
|
8
|
+
// Re-export all exports from main.js
|
|
3
9
|
export * from "./main.js";
|
|
4
10
|
|
|
5
11
|
export type Invocable = Function | Maplike | Unpackable;
|
package/package.json
CHANGED
package/shared.js
CHANGED
|
@@ -26,6 +26,7 @@ export { default as getParent } from "./src/utilities/getParent.js";
|
|
|
26
26
|
export { default as getRealmObjectPrototype } from "./src/utilities/getRealmObjectPrototype.js";
|
|
27
27
|
export { default as isPacked } from "./src/utilities/isPacked.js";
|
|
28
28
|
export { default as isPlainObject } from "./src/utilities/isPlainObject.js";
|
|
29
|
+
export { default as isPrimitive } from "./src/utilities/isPrimitive.js";
|
|
29
30
|
export { default as isStringlike } from "./src/utilities/isStringlike.js";
|
|
30
31
|
export { default as isUnpackable } from "./src/utilities/isUnpackable.js";
|
|
31
32
|
export { default as keysFromPath } from "./src/utilities/keysFromPath.js";
|
|
@@ -62,7 +63,7 @@ export class ExplorableSiteTree extends ExplorableSiteMap {
|
|
|
62
63
|
constructor(href) {
|
|
63
64
|
super(href);
|
|
64
65
|
console.warn(
|
|
65
|
-
"ExplorableSiteTree is deprecated. Please use ExplorableSiteMap instead."
|
|
66
|
+
"ExplorableSiteTree is deprecated. Please use ExplorableSiteMap instead.",
|
|
66
67
|
);
|
|
67
68
|
}
|
|
68
69
|
}
|