Skip to content

Commit

Permalink
build: build only typescript when packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
dvirtz committed Jul 27, 2023
1 parent 58c15af commit 4acc829
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
"isPreReleaseVersion": false
},
"scripts": {
"vscode:prepublish": "npm run build",
"vscode:prepublish": "tsc --build",
"build": "tsc --build",
"test": "npm run unit && npm run integration",
"preintegration": "npm run build",
Expand Down
5 changes: 3 additions & 2 deletions packages/parquet-reader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "pkg-prebuilds-verify dist/binding-options.js || pipenv run cmake-js build",
"vscode:prepublish": "tsc --build",
"build": "pipenv run cmake-js build",
"build:debug": "pipenv run cmake-js build -D",
"preinstall": "pipenv install && tsc --build",
"install": "npm run build",
"install": "pkg-prebuilds-verify dist/binding-options.js || npm run build",
"clean": "rimraf dist build prebuilds"
},
"dependencies": {
Expand Down

0 comments on commit 4acc829

Please sign in to comment.