From ddb0a1221062556e99e809128f6895d86355159e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Gr=C3=A9lard?= Date: Wed, 28 Feb 2024 14:39:00 +0000 Subject: [PATCH] yarn workspaces foreach default (#2737) --- .yarn/versions/fad3e42d.yml | 2 ++ package.json | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 .yarn/versions/fad3e42d.yml diff --git a/.yarn/versions/fad3e42d.yml b/.yarn/versions/fad3e42d.yml new file mode 100644 index 0000000000..e03b86dd57 --- /dev/null +++ b/.yarn/versions/fad3e42d.yml @@ -0,0 +1,2 @@ +declined: + - primitives diff --git a/package.json b/package.json index 863673498b..bf67def580 100644 --- a/package.json +++ b/package.json @@ -24,9 +24,9 @@ "build:packages": "parcel build 'packages/*/*/' --no-cache && yarn build:fix-type-defs", "build:fix-type-defs": "node ./scripts/fix-type-defs-imports", "build:cleanup": "mv tsconfig.json tsconfig.production.json && mv tsconfig.tmp.json tsconfig.json", - "publish:stable": "yarn bump:stable && yarn clean && yarn build && yarn workspaces foreach -pv --exclude primitives --exclude ssr-testing npm publish --tolerate-republish --access public", - "publish:next": "yarn bump:next && yarn clean && yarn build && yarn workspaces foreach -pv --exclude primitives --exclude ssr-testing npm publish --tolerate-republish --access public --tag next", - "clean": "yarn workspaces foreach -pv --exclude primitives --exclude ssr-testing run clean", + "publish:stable": "yarn bump:stable && yarn clean && yarn build && yarn workspaces foreach -pvW --exclude primitives --exclude ssr-testing npm publish --tolerate-republish --access public", + "publish:next": "yarn bump:next && yarn clean && yarn build && yarn workspaces foreach -pvW --exclude primitives --exclude ssr-testing npm publish --tolerate-republish --access public --tag next", + "clean": "yarn workspaces foreach -pvW --exclude primitives --exclude ssr-testing run clean", "reset": "yarn clean && rm -rf node_modules .yarn/cache .parcel-cache", "bump:stable": "yarn version apply --all", "bump:next": "yarn version apply --all --prerelease",