-
- Downloads
chore: fix build command
... | ... | @@ -12,10 +12,10 @@ |
"test": "turbo run test", | ||
"type-check": "tsc -b --diagnostics", | ||
"circular-check": "madge --circular ./packages/**/**/dist/index.js", | ||
"release": "pnpm run build:release && changeset publish", | ||
"release-snapshot": "pnpm run build:release && changeset publish --tag snapshot", | ||
"new-version": "changeset version && pnpm format:write && pnpm run build:release", | ||
"new-snapshot": "pnpm run build:release && changeset version --snapshot" | ||
"release": "pnpm run build && changeset publish", | ||
"release-snapshot": "pnpm run build && changeset publish --tag snapshot", | ||
"new-version": "changeset version && pnpm format:write && pnpm run build", | ||
"new-snapshot": "pnpm run build && changeset version --snapshot" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.5", | ||
... | ... |
Please register or sign in to comment