Skip to content

Commit

Permalink
Merge pull request #218 from gadget-inc/incremental-typescript
Browse files Browse the repository at this point in the history
Use typescript incremental building for a little bit more speed
  • Loading branch information
airhorns committed Jun 27, 2023
2 parents cb27206 + bd28a6d commit a071ca8
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 63 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"prettier": "^2.8.8",
"semver": "^7.3.8",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"typescript": "5.1.3",
"zx": "^7.1.1",
"@gadgetinc/api-client-core": "workspace:*",
"@gadgetinc/react": "workspace:*"
Expand Down
6 changes: 3 additions & 3 deletions packages/api-client-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"homepage": "https://github.com/gadget-inc/js-clients/tree/main/packages/api-client-core",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc --watch --preserveWatchOutput",
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"prepublishOnly": "pnpm build",
"prerelease": "gitpkg publish"
},
Expand All @@ -38,6 +38,6 @@
"gql-tag": "^1.0.1",
"nock": "^13.3.1",
"type-fest": "^3.3.0",
"typescript": "5.0.4"
"typescript": "5.1.3"
}
}
2 changes: 1 addition & 1 deletion packages/blog-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@vitejs/plugin-react-swc": "^3.0.0",
"typescript": "5.0.4",
"typescript": "5.1.3",
"vite": "^4.2.0"
}
}
4 changes: 2 additions & 2 deletions packages/react-shopify-app-bridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"homepage": "https://github.com/gadget-inc/js-clients/tree/main/packages/react-shopify-app-bridge",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc --watch --preserveWatchOutput",
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"prepublishOnly": "pnpm build",
"prerelease": "gitpkg publish"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"homepage": "https://github.com/gadget-inc/js-clients/tree/main/packages/react",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc --watch --preserveWatchOutput",
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"prepublishOnly": "pnpm build",
"prerelease": "gitpkg publish"
},
Expand Down
104 changes: 52 additions & 52 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a071ca8

Please sign in to comment.