Skip to content

Commit 1cdcdf5

Browse files
committed
build: launch all package scripts with Yarn
1 parent c478c29 commit 1cdcdf5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"description": "playwright + dom-testing-library",
55
"main": "./dist/index.js",
66
"scripts": {
7-
"test": "npm run test:lint && npm run test:unit",
7+
"test": "yarn test:lint && yarn test:unit",
88
"test:unit": "jest",
99
"test:lint": "lint -t typescript './lib/**/*.ts'",
1010
"semantic-release": "semantic-release",
1111
"clean": "rm -fR dist/",
12-
"rebuild": "npm run clean && npm run build",
13-
"prepublishOnly": "npm run rebuild && generate-export-aliases",
14-
"build": "npm run build:ts && npm run build:rollup",
12+
"rebuild": "yarn clean && yarn build",
13+
"prepublishOnly": "yarn rebuild && generate-export-aliases",
14+
"build": "yarn build:ts && yarn build:rollup",
1515
"build:ts": "tsc",
1616
"build:rollup": "rollup -c rollup.config.js"
1717
},

0 commit comments

Comments
 (0)