Skip to content

Commit

Permalink
ci: fix ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
isolomak committed Dec 4, 2022
1 parent a6c3ed9 commit b42b52b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "magnetizer",
"version": "2.0.0",
"description": "Library for decoding and encoding magnet links.",
"description": "Library for decoding and encoding magnet links",
"main": "src/index.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "eslint src/**/*.ts",
"test": "./node_modules/.bin/jest --runInBand",
"test": "npm run lint && ./node_modules/.bin/jest --runInBand",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test"
},
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
]
},
"include": [
"src/**/*",
"test/**/*"
"src/**/*"
],
"exclude": [
"node_modules",
Expand Down

0 comments on commit b42b52b

Please sign in to comment.