Skip to content

Commit

Permalink
Remove dist suffix from plugin id
Browse files Browse the repository at this point in the history
  • Loading branch information
Exidex committed Jul 22, 2024
1 parent 9dd6ff5 commit 27b82be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { fromError } from "zod-validation-error";
export async function dev() {
const { SaveLocalPlugin } = await setupGrpc();

let pluginId = process.cwd() + "/dist";// TODO: get dir which contains package.json
let pluginId = process.cwd();// TODO: get dir which contains package.json

console.log(chalk.bgYellowBright.black(`Gauntlet Dev Server `) + chalk.bgYellowBright.whiteBright(`v${version}`));
console.log(chalk.whiteBright(`Plugin ID: file://${pluginId}`));
Expand Down

0 comments on commit 27b82be

Please sign in to comment.