Skip to content

Commit 9142790

Browse files
authored
only build publishable packages during release process (#348)
* clean up * fix release process
1 parent 279d96d commit 9142790

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"prepare": "husky",
2424
"publint": "turbo publint",
2525
"registry": "pnpm dev -F registry",
26-
"release": "pnpm build && changeset publish",
26+
"release": "turbo build --filter='./packages/*' && changeset publish",
2727
"shirt-shop": "pnpm dev -F shirt-shop",
2828
"shirt-shop-api": "pnpm dev -F shirt-shop-api",
2929
"snippets": "pnpm dev -F snippets",

packages/vercel-flags-core/src/types/flags-definitions.d.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
declare module '@vercel/flags-definitions/definitions.json' {
2-
const definitions: unknown;
3-
export default definitions;
4-
}
5-
61
declare module '@vercel/flags-definitions' {
72
export function get(hashedSdkKey: string): Record<string, unknown> | null;
83
export const version: string;

0 commit comments

Comments
 (0)