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
Currently porting cliffy to jsr (commit 587cfd1).
While running deno publish --dry-run on cliffyPR#679, types imported in @cliffy/command/type.ts failed check on deno publish --dry-run.
error: Failed ensuring public API type output is valid.
TS2304 [ERROR]: Cannot find name 'ArgumentValue'.
public abstract parse(type: ArgumentValue): TValue;~~~~~~~~~~~~~
at file:///.../deno-cliffy/command/type.ts:35:31
TS2304 [ERROR]: Cannot find name 'Command'.
*/ public values?(cmd: Command, parent?: Command): ValuesHandlerResult;~~~~~~~
at file:///.../deno-cliffy/command/type.ts:42:10
TS2304 [ERROR]: Cannot find name 'Command'.
*/ public values?(cmd: Command, parent?: Command): ValuesHandlerResult;~~~~~~~
at file:///.../deno-cliffy/command/type.ts:43:14
TS2304 [ERROR]: Cannot find name 'ValuesHandlerResult'.
*/ public values?(cmd: Command, parent?: Command): ValuesHandlerResult;~~~~~~~~~~~~~~~~~~~
at file:///.../deno-cliffy/command/type.ts:44:6
TS2304 [ERROR]: Cannot find name 'Command'.
*/ public complete?(cmd: Command, parent?: Command): CompleteHandlerResult;~~~~~~~
at file:///.../deno-cliffy/command/type.ts:51:10
TS2304 [ERROR]: Cannot find name 'Command'.
*/ public complete?(cmd: Command, parent?: Command): CompleteHandlerResult;~~~~~~~
at file:///.../deno-cliffy/command/type.ts:52:14
TS2304 [ERROR]: Cannot find name 'CompleteHandlerResult'.
*/ public complete?(cmd: Command, parent?: Command): CompleteHandlerResult;~~~~~~~~~~~~~~~~~~~~~
at file:///.../deno-cliffy/command/type.ts:53:6
Found 7 errors.
You may have discovered a bug in Deno. Please open an issue at: https://github.com/denoland/deno/issues/
The text was updated successfully, but these errors were encountered:
Strange. I'm able to reproduce and see what's happening, but not in a unit test yet. This is definitely a bug and I'll try to fix it over the weekend or on Monday.
Version: Deno 1.41.2
Currently porting cliffy to
jsr
(commit 587cfd1).While running
deno publish --dry-run
oncliffy
PR#679, types imported in @cliffy/command/type.ts failed check ondeno publish --dry-run
.The text was updated successfully, but these errors were encountered: