Skip to content

Commit

Permalink
fix(cli): wrong imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tuler committed Apr 29, 2024
1 parent 6284874 commit 3b75308
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/cli/src/commands/clean.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from "fs-extra";
import { BaseCommand } from "../baseCommand";
import { BaseCommand } from "../baseCommand.js";

export default class Clean extends BaseCommand<typeof Clean> {
static summary = "Clean build artifacts of application.";
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import chalk from "chalk";
import type { TemplateProvider } from "giget";
import { DownloadTemplateResult, downloadTemplate } from "giget";
import ora from "ora";
import { BaseCommand } from "../baseCommand";
import { BaseCommand } from "../baseCommand.js";

export const DEFAULT_TEMPLATES_BRANCH = "sdk-0.4";

Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/commands/doctor.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { execa } from "execa";
import semver from "semver";
import { BaseCommand } from "../baseCommand";
import { BaseCommand } from "../baseCommand.js";

export default class DoctorCommand extends BaseCommand<typeof DoctorCommand> {
static description = "Verify the minimal sytem requirements";
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/commands/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { execa } from "execa";
import fs from "fs-extra";
import { lookpath } from "lookpath";
import path from "path";
import { BaseCommand } from "../baseCommand";
import { BaseCommand } from "../baseCommand.js";

export default class Shell extends BaseCommand<typeof Shell> {
static description = "Start a shell in cartesi machine of application";
Expand Down

0 comments on commit 3b75308

Please sign in to comment.