@celerity-sdk/core 0.7.0 → 0.8.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/dist/index.cjs CHANGED
@@ -1713,7 +1713,7 @@ function checkDependencies(consumer, depTokens, visibleTokens, moduleClass, grap
1713
1713
  checkDependencies(dep, adoptedDeps, visibleTokens, moduleClass, graph, container, diagnostics);
1714
1714
  continue;
1715
1715
  }
1716
- if ((0, import_common2.isResourceLayerToken)(dep)) continue;
1716
+ if ((0, import_common2.isRuntimeProvidedToken)(dep)) continue;
1717
1717
  diagnostics.push({
1718
1718
  type: "missing_dependency",
1719
1719
  message: `${tokenToString(consumer)} in ${moduleClass.name} requires ${tokenToString(dep)} \u2014 no provider registered. Ensure the module providing it is included in your module's "imports" array, or register a provider for it directly.`