diff --git a/apps/dotcom/version.ts b/apps/dotcom/version.ts index 2a17909c7..11441a571 100644 --- a/apps/dotcom/version.ts +++ b/apps/dotcom/version.ts @@ -1,4 +1,4 @@ // This file is automatically generated by scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '2.0.0-beta.7' +export const version = '2.0.0-beta.8' diff --git a/lazy.config.ts b/lazy.config.ts index e0a119923..c711860f4 100644 --- a/lazy.config.ts +++ b/lazy.config.ts @@ -82,7 +82,12 @@ const config = { execution: 'top-level', baseCommand: `tsx /scripts/refresh-assets.ts`, cache: { - inputs: ['package.json', `/scripts/refresh-assets.ts`, `/assets/**/*`], + inputs: [ + 'package.json', + `/scripts/refresh-assets.ts`, + `/assets/**/*`, + `/packages/*/package.json`, + ], }, }, 'build-types': { diff --git a/packages/editor/src/version.ts b/packages/editor/src/version.ts index 2a17909c7..11441a571 100644 --- a/packages/editor/src/version.ts +++ b/packages/editor/src/version.ts @@ -1,4 +1,4 @@ // This file is automatically generated by scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '2.0.0-beta.7' +export const version = '2.0.0-beta.8' diff --git a/packages/tldraw/src/lib/ui/version.ts b/packages/tldraw/src/lib/ui/version.ts index 2a17909c7..11441a571 100644 --- a/packages/tldraw/src/lib/ui/version.ts +++ b/packages/tldraw/src/lib/ui/version.ts @@ -1,4 +1,4 @@ // This file is automatically generated by scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '2.0.0-beta.7' +export const version = '2.0.0-beta.8' diff --git a/scripts/lib/publishing.ts b/scripts/lib/publishing.ts index b58df39d0..6f84325a6 100644 --- a/scripts/lib/publishing.ts +++ b/scripts/lib/publishing.ts @@ -57,7 +57,7 @@ export async function setAllVersions(version: string) { ) } - await exec('yarn', ['refresh-assets']) + await exec('yarn', ['refresh-assets', '--force']) const lernaJson = JSON.parse(readFileSync('lerna.json', 'utf8')) lernaJson.version = version