Skip to content

Commit

Permalink
Postbuild typecheck (bluesky-social#235)
Browse files Browse the repository at this point in the history
* typecheck postbuild

* rm space

Co-authored-by: devin ivy <[email protected]>

Co-authored-by: devin ivy <[email protected]>
  • Loading branch information
dholms and devinivy authored Oct 13, 2022
1 parent bfaf3a8 commit 7a9d773
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/dev-env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"main": "dist/cli.js",
"scripts": {
"build": "node ./build.js",
"postbuild" : "tsc --build tsconfig.build.json",
"start": "node dist/cli.js",
"prettier": "prettier --check src/",
"prettier:fix": "prettier --write src/",
Expand Down
4 changes: 4 additions & 0 deletions packages/dev-env/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "./tsconfig.json",
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
}
1 change: 1 addition & 0 deletions packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"scripts": {
"codegen": "lex gen-server ./src/lexicon ../../lexicons/atproto.com/* ../../lexicons/bsky.app/*",
"build": "node ./build.js",
"postbuild": "tsc --build tsconfig.build.json",
"start": "node dist/bin.js",
"test": "jest",
"test:pg": "../pg/with-test-db.sh jest",
Expand Down
4 changes: 4 additions & 0 deletions packages/server/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "./tsconfig.json",
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
}

0 comments on commit 7a9d773

Please sign in to comment.