Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SmartQuery decorator #67

Merged
merged 21 commits into from
Sep 5, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "Run tsc build as part of test script"
This reverts commit b5ebe6c.
  • Loading branch information
sgarner committed Sep 5, 2021
commit 2c102ffd8633b66be0221c2c61ffaeb9ae7cc00c
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@
"postbuild": "cp package.json README.md dist/",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"pretest": "rimraf dist",
"test": "tsc -p tsconfig.json && jest",
"test": "jest",
"test:watch": "jest --watch",
"pretest:ci": "npm run pretest",
"test:ci": "tsc -p tsconfig.json && jest --ci --runInBand --passWithNoTests",
"test:ci": "rimraf test/.results && mkdirp test/.results && jest --ci --runInBand --passWithNoTests",
"version": "npm run build",
"postversion": "npm run postbuild",
"release": "np --contents dist/",
Expand Down