Skip to content

Commit

Permalink
Don't build tests, and fix bin path
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiean committed Feb 16, 2021
1 parent 8acf460 commit 471490c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "volt",
"version": "0.0.1-alpha3",
"description": "Open source Azure Key Vault API compatible server",
"main": "./dist/src/main.js",
"main": "./dist/main.js",
"bin": {
"volt": "./dist/src/main.js"
"volt": "./dist/main.js"
},
"scripts": {
"test": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha -r ts-node/register -r tests/fixtures.ts --no-timeouts --grep \"@loki\" --recursive tests/**/*.test.ts tests/**/**/*.test.ts --exit",
Expand Down
16 changes: 13 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,21 @@
"declarationMap": true,
"importHelpers": true,
"declarationDir": "./typings",
"lib": ["es5", "es6", "es7", "esnext", "dom"],
"lib": [
"es5",
"es6",
"es7",
"esnext",
"dom"
],
"esModuleInterop": true,
"downlevelIteration": true
},
"compileOnSave": true,
"exclude": ["node_modules"],
"include": ["./src/**/*.ts", "./tests/**/*.ts"]
"exclude": [
"node_modules"
],
"include": [
"./src/**/*.ts"
]
}

0 comments on commit 471490c

Please sign in to comment.