@layerzerolabs/dependency-graph 0.0.43 → 0.0.45

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.
@@ -10,17 +10,17 @@
10
10
  CLI Cleaning output folder
11
11
  CJS Build start
12
12
  ESM Build start
13
- CJS dist/dependencyNode.cjs 285.00 B
14
- CJS dist/XBOMFZB4.cjs 503.00 B
15
- CJS dist/index.cjs 267.00 B
16
- CJS dist/dependencyNode.cjs.map 79.00 B
17
- CJS dist/XBOMFZB4.cjs.map 1.51 KB
18
- CJS dist/index.cjs.map 70.00 B
19
- CJS ⚡️ Build success in 141ms
20
13
  ESM dist/dependencyNode.js 133.00 B
21
- ESM dist/UBM64M7K.js 472.00 B
14
+ ESM dist/EYJTCMSL.js 472.00 B
22
15
  ESM dist/index.js 115.00 B
23
- ESM dist/UBM64M7K.js.map 1.51 KB
24
- ESM dist/index.js.map 69.00 B
25
16
  ESM dist/dependencyNode.js.map 78.00 B
26
- ESM ⚡️ Build success in 142ms
17
+ ESM dist/index.js.map 69.00 B
18
+ ESM dist/EYJTCMSL.js.map 1.55 KB
19
+ ESM ⚡️ Build success in 76ms
20
+ CJS dist/index.cjs 267.00 B
21
+ CJS dist/GTEKUOS6.cjs 503.00 B
22
+ CJS dist/dependencyNode.cjs 285.00 B
23
+ CJS dist/index.cjs.map 70.00 B
24
+ CJS dist/GTEKUOS6.cjs.map 1.55 KB
25
+ CJS dist/dependencyNode.cjs.map 79.00 B
26
+ CJS ⚡️ Build success in 76ms
@@ -15,5 +15,5 @@ var DependencyNode = class {
15
15
  };
16
16
 
17
17
  export { DependencyNode };
18
- //# sourceMappingURL=UBM64M7K.js.map
19
- //# sourceMappingURL=UBM64M7K.js.map
18
+ //# sourceMappingURL=EYJTCMSL.js.map
19
+ //# sourceMappingURL=EYJTCMSL.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/dependencyNode.ts"],"names":["DependencyNode","name","dependencies"],"mappings":";;;;AAUO,IAAeA,iBAAf,MAAeA;EAVtB;;;AAcoBC,EAAAA,IAAAA;AACAC,EAAAA,YAAAA;AAChB,EAAA,WAAA,CAAY,EACRD,IAAAA,EACAC,YAAAA,GAAe,IAAmB,EAInC;AACC,IAAA,IAAA,CAAKD,IAAAA,GAAOA,IAAAA;AACZ,IAAA,IAAA,CAAKC,YAAAA,GAAeA,YAAAA;AACxB,EAAA;AACJ","file":"EYJTCMSL.js","sourcesContent":["/**\n * <!-- anchor:DependencyNode -->\n * Dependency nodes are abstract nodes in the dependency graph. They're used to build the graph,\n * but as an abstract class, lacks the required information to actually be resolved to anything.\n * If you want to implement a new dependency node, see ObjectDefinition or FactoryDefinition\n * @param name the name of this node. It should be unique across the entire graph.\n * @param dependencies a map of other nodes that this node depends on. These children will be resolved first.\n * The key of the dependencies map should be some arbitrary name within the context of *this* node. It does\n * not have to be unique.\n */\nexport abstract class DependencyNode<\n Name extends string = string,\n _Dependencies extends Dependencies = Dependencies,\n> {\n public readonly name: Name;\n public readonly dependencies: _Dependencies;\n constructor({\n name,\n dependencies = {} as _Dependencies,\n }: {\n name: Name;\n dependencies?: _Dependencies;\n }) {\n this.name = name;\n this.dependencies = dependencies;\n }\n}\n\nexport type Dependencies = { [key: string]: DependencyNode<any, any> };\n"]}
@@ -17,5 +17,5 @@ var DependencyNode = class {
17
17
  };
18
18
 
19
19
  exports.DependencyNode = DependencyNode;
20
- //# sourceMappingURL=XBOMFZB4.cjs.map
21
- //# sourceMappingURL=XBOMFZB4.cjs.map
20
+ //# sourceMappingURL=GTEKUOS6.cjs.map
21
+ //# sourceMappingURL=GTEKUOS6.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/dependencyNode.ts"],"names":["DependencyNode","name","dependencies"],"mappings":";;;;;;AAUO,IAAeA,iBAAf,MAAeA;EAVtB;;;AAcoBC,EAAAA,IAAAA;AACAC,EAAAA,YAAAA;AAChB,EAAA,WAAA,CAAY,EACRD,IAAAA,EACAC,YAAAA,GAAe,IAAmB,EAInC;AACC,IAAA,IAAA,CAAKD,IAAAA,GAAOA,IAAAA;AACZ,IAAA,IAAA,CAAKC,YAAAA,GAAeA,YAAAA;AACxB,EAAA;AACJ","file":"GTEKUOS6.cjs","sourcesContent":["/**\n * <!-- anchor:DependencyNode -->\n * Dependency nodes are abstract nodes in the dependency graph. They're used to build the graph,\n * but as an abstract class, lacks the required information to actually be resolved to anything.\n * If you want to implement a new dependency node, see ObjectDefinition or FactoryDefinition\n * @param name the name of this node. It should be unique across the entire graph.\n * @param dependencies a map of other nodes that this node depends on. These children will be resolved first.\n * The key of the dependencies map should be some arbitrary name within the context of *this* node. It does\n * not have to be unique.\n */\nexport abstract class DependencyNode<\n Name extends string = string,\n _Dependencies extends Dependencies = Dependencies,\n> {\n public readonly name: Name;\n public readonly dependencies: _Dependencies;\n constructor({\n name,\n dependencies = {} as _Dependencies,\n }: {\n name: Name;\n dependencies?: _Dependencies;\n }) {\n this.name = name;\n this.dependencies = dependencies;\n }\n}\n\nexport type Dependencies = { [key: string]: DependencyNode<any, any> };\n"]}
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
- var XBOMFZB4_cjs = require('./XBOMFZB4.cjs');
3
+ var GTEKUOS6_cjs = require('./GTEKUOS6.cjs');
4
4
 
5
5
 
6
6
 
7
7
  Object.defineProperty(exports, "DependencyNode", {
8
8
  enumerable: true,
9
- get: function () { return XBOMFZB4_cjs.DependencyNode; }
9
+ get: function () { return GTEKUOS6_cjs.DependencyNode; }
10
10
  });
11
11
  //# sourceMappingURL=dependencyNode.cjs.map
12
12
  //# sourceMappingURL=dependencyNode.cjs.map
@@ -1,4 +1,5 @@
1
1
  /**
2
+ * <!-- anchor:DependencyNode -->
2
3
  * Dependency nodes are abstract nodes in the dependency graph. They're used to build the graph,
3
4
  * but as an abstract class, lacks the required information to actually be resolved to anything.
4
5
  * If you want to implement a new dependency node, see ObjectDefinition or FactoryDefinition
@@ -1 +1 @@
1
- {"version":3,"file":"dependencyNode.d.ts","sourceRoot":"","sources":["../src/dependencyNode.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,8BAAsB,cAAc,CAChC,IAAI,SAAS,MAAM,GAAG,MAAM,EAC5B,aAAa,SAAS,YAAY,GAAG,YAAY;IAEjD,SAAgB,IAAI,EAAE,IAAI,CAAC;IAC3B,SAAgB,YAAY,EAAE,aAAa,CAAC;gBAChC,EACR,IAAI,EACJ,YAAkC,GACrC,EAAE;QACC,IAAI,EAAE,IAAI,CAAC;QACX,YAAY,CAAC,EAAE,aAAa,CAAC;KAChC;CAIJ;AAED,MAAM,MAAM,YAAY,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAC,GAAG,EAAE,GAAG,CAAC,CAAA;CAAE,CAAC"}
1
+ {"version":3,"file":"dependencyNode.d.ts","sourceRoot":"","sources":["../src/dependencyNode.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,8BAAsB,cAAc,CAChC,IAAI,SAAS,MAAM,GAAG,MAAM,EAC5B,aAAa,SAAS,YAAY,GAAG,YAAY;IAEjD,SAAgB,IAAI,EAAE,IAAI,CAAC;IAC3B,SAAgB,YAAY,EAAE,aAAa,CAAC;gBAChC,EACR,IAAI,EACJ,YAAkC,GACrC,EAAE;QACC,IAAI,EAAE,IAAI,CAAC;QACX,YAAY,CAAC,EAAE,aAAa,CAAC;KAChC;CAIJ;AAED,MAAM,MAAM,YAAY,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAC,GAAG,EAAE,GAAG,CAAC,CAAA;CAAE,CAAC"}
@@ -1,3 +1,3 @@
1
- export { DependencyNode } from './UBM64M7K.js';
1
+ export { DependencyNode } from './EYJTCMSL.js';
2
2
  //# sourceMappingURL=dependencyNode.js.map
3
3
  //# sourceMappingURL=dependencyNode.js.map
package/dist/index.cjs CHANGED
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
- var XBOMFZB4_cjs = require('./XBOMFZB4.cjs');
3
+ var GTEKUOS6_cjs = require('./GTEKUOS6.cjs');
4
4
 
5
5
 
6
6
 
7
7
  Object.defineProperty(exports, "DependencyNode", {
8
8
  enumerable: true,
9
- get: function () { return XBOMFZB4_cjs.DependencyNode; }
9
+ get: function () { return GTEKUOS6_cjs.DependencyNode; }
10
10
  });
11
11
  //# sourceMappingURL=index.cjs.map
12
12
  //# sourceMappingURL=index.cjs.map
package/dist/index.js CHANGED
@@ -1,3 +1,3 @@
1
- export { DependencyNode } from './UBM64M7K.js';
1
+ export { DependencyNode } from './EYJTCMSL.js';
2
2
  //# sourceMappingURL=index.js.map
3
3
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/dependency-graph",
3
- "version": "0.0.43",
3
+ "version": "0.0.45",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,8 +15,8 @@
15
15
  "types": "./dist/index.d.ts",
16
16
  "devDependencies": {
17
17
  "tsup": "^8.4.0",
18
- "@layerzerolabs/tsup-configuration": "0.0.43",
19
- "@layerzerolabs/typescript-configuration": "0.0.43"
18
+ "@layerzerolabs/tsup-configuration": "0.0.45",
19
+ "@layerzerolabs/typescript-configuration": "0.0.45"
20
20
  },
21
21
  "publishConfig": {
22
22
  "access": "restricted",
@@ -1,4 +1,5 @@
1
1
  /**
2
+ * <!-- anchor:DependencyNode -->
2
3
  * Dependency nodes are abstract nodes in the dependency graph. They're used to build the graph,
3
4
  * but as an abstract class, lacks the required information to actually be resolved to anything.
4
5
  * If you want to implement a new dependency node, see ObjectDefinition or FactoryDefinition
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/dependencyNode.ts"],"names":["DependencyNode","name","dependencies"],"mappings":";;;;AASO,IAAeA,iBAAf,MAAeA;EATtB;;;AAaoBC,EAAAA,IAAAA;AACAC,EAAAA,YAAAA;AAChB,EAAA,WAAA,CAAY,EACRD,IAAAA,EACAC,YAAAA,GAAe,IAAmB,EAInC;AACC,IAAA,IAAA,CAAKD,IAAAA,GAAOA,IAAAA;AACZ,IAAA,IAAA,CAAKC,YAAAA,GAAeA,YAAAA;AACxB,EAAA;AACJ","file":"UBM64M7K.js","sourcesContent":["/**\n * Dependency nodes are abstract nodes in the dependency graph. They're used to build the graph,\n * but as an abstract class, lacks the required information to actually be resolved to anything.\n * If you want to implement a new dependency node, see ObjectDefinition or FactoryDefinition\n * @param name the name of this node. It should be unique across the entire graph.\n * @param dependencies a map of other nodes that this node depends on. These children will be resolved first.\n * The key of the dependencies map should be some arbitrary name within the context of *this* node. It does\n * not have to be unique.\n */\nexport abstract class DependencyNode<\n Name extends string = string,\n _Dependencies extends Dependencies = Dependencies,\n> {\n public readonly name: Name;\n public readonly dependencies: _Dependencies;\n constructor({\n name,\n dependencies = {} as _Dependencies,\n }: {\n name: Name;\n dependencies?: _Dependencies;\n }) {\n this.name = name;\n this.dependencies = dependencies;\n }\n}\n\nexport type Dependencies = { [key: string]: DependencyNode<any, any> };\n"]}
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/dependencyNode.ts"],"names":["DependencyNode","name","dependencies"],"mappings":";;;;;;AASO,IAAeA,iBAAf,MAAeA;EATtB;;;AAaoBC,EAAAA,IAAAA;AACAC,EAAAA,YAAAA;AAChB,EAAA,WAAA,CAAY,EACRD,IAAAA,EACAC,YAAAA,GAAe,IAAmB,EAInC;AACC,IAAA,IAAA,CAAKD,IAAAA,GAAOA,IAAAA;AACZ,IAAA,IAAA,CAAKC,YAAAA,GAAeA,YAAAA;AACxB,EAAA;AACJ","file":"XBOMFZB4.cjs","sourcesContent":["/**\n * Dependency nodes are abstract nodes in the dependency graph. They're used to build the graph,\n * but as an abstract class, lacks the required information to actually be resolved to anything.\n * If you want to implement a new dependency node, see ObjectDefinition or FactoryDefinition\n * @param name the name of this node. It should be unique across the entire graph.\n * @param dependencies a map of other nodes that this node depends on. These children will be resolved first.\n * The key of the dependencies map should be some arbitrary name within the context of *this* node. It does\n * not have to be unique.\n */\nexport abstract class DependencyNode<\n Name extends string = string,\n _Dependencies extends Dependencies = Dependencies,\n> {\n public readonly name: Name;\n public readonly dependencies: _Dependencies;\n constructor({\n name,\n dependencies = {} as _Dependencies,\n }: {\n name: Name;\n dependencies?: _Dependencies;\n }) {\n this.name = name;\n this.dependencies = dependencies;\n }\n}\n\nexport type Dependencies = { [key: string]: DependencyNode<any, any> };\n"]}