You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I run yarn install on this commit then the components file for the actor-optimize-rule file contains references to actor-dereference-rule-parse which isn't even a dependency of the package
ActorOptimizeRule.ts
importtype{IAction,IActorArgs,IActorOutput,IActorTest,Mediate}from'@comunica/core';import{Actor}from'@comunica/core';importtype{Rule}from'@comunica/reasoning-types';importtype{IActionContext}from'@comunica/types';importtype{AsyncIterator}from'asynciterator';importtype{Algebra}from'sparqlalgebrajs';/** * A comunica actor for optimizing reasoning rules * * Actor types: * * Input: IActionOptimizeRule: TODO: fill in. * * Test: <none> * * Output: IActorOptimizeRuleOutput: TODO: fill in. * * @see IActionOptimizeRule * @see IActorOptimizeRuleOutput */exportabstractclassActorOptimizeRuleextendsActor<IActionOptimizeRule,IActorTest,IActorOptimizeRuleOutput>{/** * @param args - @defaultNested {<default_bus> a <cc:components/Bus.jsonld#Bus>} bus */publicconstructor(args: IActorOptimizeRuleArgs){super(args);}}exportinterfaceIActionOptimizeRuleextendsIAction{rules: AsyncIterator<Rule>;/** * An optional pattern to to restrict the rules to infer for */pattern?: Algebra.Pattern;}exportinterfaceIActorOptimizeRuleOutputextendsIActorOutput{rules: AsyncIterator<Rule>;pattern?: Algebra.Pattern;context: IActionContext;}exporttypeIActorOptimizeRuleArgs=IActorArgs<IActionOptimizeRule,IActorTest,IActorOptimizeRuleOutput>;exporttypeMediatorOptimizeRule=Mediate<IActionOptimizeRule,IActorOptimizeRuleOutput>;
If I run
yarn install
on this commit then the components file for the actor-optimize-rule file contains references toactor-dereference-rule-parse
which isn't even a dependency of the packageActorOptimizeRule.ts
components/ActorOptimizeRule.jsonld
The text was updated successfully, but these errors were encountered: