@lytjs/component 6.0.0 → 6.4.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
@@ -7,7 +7,6 @@ var reactivity = require('@lytjs/reactivity');
7
7
  var commonScheduler = require('@lytjs/common-scheduler');
8
8
  var vdom = require('@lytjs/vdom');
9
9
  var commonVnode = require('@lytjs/common-vnode');
10
- var scope = require('@lytjs/reactivity/scope');
11
10
 
12
11
  // src/component-setup.ts
13
12
  function normalizePropsOptions(rawProps) {
@@ -1671,7 +1670,7 @@ function createProviderNode(parent = null) {
1671
1670
  parent,
1672
1671
  children: /* @__PURE__ */ new Set(),
1673
1672
  providers: /* @__PURE__ */ new Map(),
1674
- scope: scope.effectScope()
1673
+ scope: reactivity.effectScope()
1675
1674
  };
1676
1675
  if (parent) {
1677
1676
  parent.children.add(node);