mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 01:46:04 +00:00
build: Update scripts to be more selective on files
And run on test files
This commit is contained in:
parent
205818f4d8
commit
0541993f3c
1 changed files with 4 additions and 4 deletions
|
@ -5,10 +5,10 @@
|
|||
"main": "lib/main.js",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"format": "prettier --write '**/*'",
|
||||
"format:check": "prettier --check '**/*'",
|
||||
"lint": "eslint src/**/*.ts",
|
||||
"lint:fix": "eslint --fix src/**/*.ts",
|
||||
"format": "prettier --write '**/*.{ts,js,yml,md,json}'",
|
||||
"format:check": "prettier --check '**/*.{ts,js,yml,md,json}'",
|
||||
"lint": "eslint {src,test}/**/*.ts",
|
||||
"lint:fix": "eslint --fix {src,test}/**/*.ts",
|
||||
"package": "ncc build --source-map --license LICENSE",
|
||||
"test": "ava",
|
||||
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
||||
|
|
Loading…
Reference in a new issue