From 9756c139cb2027117da9799de6c59ff4a9283016 Mon Sep 17 00:00:00 2001 From: Angelo Ashmore Date: Tue, 29 Jun 2021 11:58:14 -1000 Subject: [PATCH] chore: replace yarn scripts with npm --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 06c5b44..ea9244c 100644 --- a/package.json +++ b/package.json @@ -40,13 +40,13 @@ "scripts": { "build": "siroc build", "dev": "siroc build --watch", - "release": "yarn build && yarn test && standard-version && git push --follow-tags && yarn build && npm publish", + "release": "npm run build && npm run test && standard-version && git push --follow-tags && npm run build && npm publish", "release:dry": "standard-version --dry-run", - "release:alpha": "yarn build && yarn test && standard-version --release-as major --prerelease alpha && git push --follow-tags && yarn build && npm publish --tag alpha", + "release:alpha": "npm run build && npm run test && standard-version --release-as major --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha", "release:alpha:dry": "standard-version --release-as major --prerelease alpha --dry-run", "lint": "eslint --ext .js,.ts .", "unit": "nyc --reporter=lcovonly --reporter=text --exclude-after-remap=false ava", - "test": "yarn lint && yarn unit" + "test": "npm run lint && npm run unit" }, "dependencies": { "@prismicio/richtext": "^2.0.0-alpha.3",