diff --git a/integration-tests/test-helper.ts b/integration-tests/test-helper.ts index 330904d3..e5660b85 100644 --- a/integration-tests/test-helper.ts +++ b/integration-tests/test-helper.ts @@ -148,7 +148,7 @@ export class TestRig { _interactiveOutput = ''; constructor() { - this.bundlePath = join(__dirname, '..', 'bundle/gemini.js'); + this.bundlePath = join(__dirname, '..', 'dist/cli.js'); this.testDir = null; } diff --git a/package.json b/package.json index 5af5fd05..aa74dd3e 100644 --- a/package.json +++ b/package.json @@ -63,10 +63,10 @@ } }, "bin": { - "qwen": "bundle/gemini.js" + "qwen": "dist/cli.js" }, "files": [ - "bundle/", + "dist/", "README.md", "LICENSE" ],