Skip to content

Commit

Permalink
feat: endpoint package (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Oct 6, 2021
1 parent 697ce66 commit 95d06cf
Show file tree
Hide file tree
Showing 33 changed files with 2,199 additions and 12 deletions.
52 changes: 52 additions & 0 deletions package-lock.json

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

11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@
"types": "./index.d.ts",
"exports": "./index.js",
"scripts": {
"test": "npm run test:code && npm run test:dts && npm run test:ts && npm run test:coverage",
"test": "npm run test:workspaces && npm run test:code && npm run test:dts && npm run test:ts && npm run test:coverage",
"test:code": "c8 node test.js",
"test:coverage": "c8 check-coverage",
"test:dts": "for d in tests/js/* ; do echo $d; tsd $d; if [ $? -eq 0 ]; then echo ok; else exit 1; fi; done",
"test:ts": "for d in tests/ts/*/tsconfig.json ; do echo $d; tsc -p $d; if [ $? -eq 0 ]; then echo ok; else exit 1; fi; done"
"test:ts": "for d in tests/ts/*/tsconfig.json ; do echo $d; tsc -p $d; if [ $? -eq 0 ]; then echo ok; else exit 1; fi; done",
"test:workspaces": "npm test --workspaces --if-present"
},
"renovate": {
"extends": [
Expand Down Expand Up @@ -49,6 +50,12 @@
"pkgRoot": "packages/core"
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "packages/endpoint"
}
],
[
"@semantic-release/npm",
{
Expand Down

0 comments on commit 95d06cf

Please sign in to comment.