codify-plugin-lib 1.0.182-beta39 → 1.0.182-beta40

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.
@@ -30,6 +30,7 @@ export class Plugin {
30
30
  const resources = await Promise.all(resourceLocations.map((l) => {
31
31
  return import(l).then((r) => r.default ?? r);
32
32
  }));
33
+ console.log(resources);
33
34
  const controllers = resources
34
35
  .map((resource) => new ResourceController(resource));
35
36
  const controllersMap = new Map(controllers.map((r) => [r.typeId, r]));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.182-beta39",
3
+ "version": "1.0.182-beta40",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -54,6 +54,8 @@ export class Plugin {
54
54
  return import(l).then((r) => r.default ?? r);
55
55
  }))
56
56
 
57
+ console.log(resources);
58
+
57
59
  const controllers = resources
58
60
  .map((resource) => new ResourceController(resource))
59
61