Skip to content

Commit

Permalink
chore(vscode): use force turbo build in prepackage. (TabbyML#2261)
Browse files Browse the repository at this point in the history
  • Loading branch information
icycodes authored May 28, 2024
1 parent c654270 commit 748c5de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion clients/tabby-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"main": "./dist/protocol.js",
"types": "./dist/protocol.d.ts",
"scripts": {
"build": "tsc --noEmit && tsup --minify --treeshake smallest",
"build": "tsc --noEmit && tsup --minify",
"watch": "tsc-watch --noEmit --onSuccess \"tsup\"",
"openapi-codegen": "openapi-typescript ./openapi/tabby.json -o ./src/types/tabbyApi.d.ts",
"test": "mocha",
Expand Down
6 changes: 3 additions & 3 deletions clients/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,15 +264,15 @@
}
},
"scripts": {
"build": "tsc --noEmit && tsup --minify --treeshake smallest",
"build": "tsc --noEmit && tsup --minify",
"watch": "tsc-watch --noEmit --onSuccess \"tsup\"",
"dev": "code --extensionDevelopmentPath=$PWD --disable-extensions && pnpm watch",
"dev:browser": "vscode-test-web --extensionDevelopmentPath=$PWD --browserType=chromium --port=3000 && pnpm watch",
"lint": "eslint --ext .ts ./src && prettier --check .",
"lint:fix": "eslint --fix --ext .ts ./src && prettier --write .",
"vscode:prepackage": "turbo build",
"vscode:prepackage": "turbo build --force",
"vscode:package": "vsce package --no-dependencies",
"vscode:prepublish": "turbo build",
"vscode:prepublish": "turbo build --force",
"vscode:publish": "vsce publish --no-dependencies"
},
"devDependencies": {
Expand Down

0 comments on commit 748c5de

Please sign in to comment.