@cascateer/core 2.0.21 → 2.0.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cascateer/core",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/cascateer/core.git"
package/src/api.ts CHANGED
@@ -80,10 +80,7 @@ class Memoizable<Args, Result> {
80
80
  (args) => objectHash(args ?? null),
81
81
  );
82
82
 
83
- return (args) => (
84
- console.log(loading),
85
- new TapObservable(effect(args), loading)
86
- );
83
+ return (args) => new TapObservable(effect(args), loading);
87
84
  };
88
85
 
89
86
  this.share = (invalidatedTags) => (args) =>
package/src/component.ts CHANGED
@@ -130,9 +130,7 @@ export class ExtendableComponentsAdapter<
130
130
  actions: this.context.store.actions,
131
131
  },
132
132
  api: {
133
- effects:
134
- (console.log(this.context.api.effects),
135
- this.context.api.effects),
133
+ effects: this.context.api.effects,
136
134
  actions: this.context.api.actions,
137
135
  },
138
136
  terminal: {