Skip to content

Commit bf02986

Browse files
committed
ci: update build commands
1 parent d56758d commit bf02986

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
2-
dist/
2+
coverage/
3+
dist/

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"test-cov": "c8 --include=src yarn test",
1010
"test-watch": "watchexec -e ts 'clear && yarn test'",
1111
"bench": "node --loader tsm --no-warnings benchmark.ts",
12-
"format": "prettier --write '{src,tests}/**/*.{js,jsx,ts,tsx}'",
13-
"format-check": "prettier --check '{src,tests}/**/*.{js,jsx,ts,tsx}'",
14-
"ci": "yarn format-check && yarn test && yarn build"
12+
"format": "prettier --write .",
13+
"lint": "tsc --noEmit && prettier --check .",
14+
"ci": "yarn lint && yarn test-cov && yarn build"
1515
},
1616
"dependencies": {
1717
"@types/punycode": "2.1.4",

0 commit comments

Comments
 (0)