@sanity/cli-build 4.1.1 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_exports/_internal/build.d.ts +45 -4
- package/dist/_exports/_internal/build.js.map +1 -1
- package/dist/actions/build/buildApp.js +3 -2
- package/dist/actions/build/buildApp.js.map +1 -1
- package/dist/actions/build/buildStudio.js +38 -59
- package/dist/actions/build/buildStudio.js.map +1 -1
- package/dist/actions/build/checkRequiredDependencies.js +22 -16
- package/dist/actions/build/checkRequiredDependencies.js.map +1 -1
- package/dist/actions/build/eventListener.js +3 -0
- package/dist/actions/build/eventListener.js.map +1 -0
- package/dist/actions/build/handlePrereleaseVersions.js +8 -27
- package/dist/actions/build/handlePrereleaseVersions.js.map +1 -1
- package/package.json +2 -2
|
@@ -34,6 +34,15 @@ declare interface AutoUpdatesBuildConfig {
|
|
|
34
34
|
*/
|
|
35
35
|
export declare function buildApp(options: BuildOptions): Promise<void>;
|
|
36
36
|
|
|
37
|
+
export declare type BuildAppEventListener = BuildEventListener;
|
|
38
|
+
|
|
39
|
+
declare interface BuildEventListener {
|
|
40
|
+
onPreReleaseInInteractiveAutoUpdate(params: {
|
|
41
|
+
prereleaseMessage: string;
|
|
42
|
+
}): Promise<void>;
|
|
43
|
+
onPreReleaseInNonInteractiveAutoUpdate: MessageFunc;
|
|
44
|
+
}
|
|
45
|
+
|
|
37
46
|
declare interface BuildOptions {
|
|
38
47
|
appId: string | undefined;
|
|
39
48
|
appTitle: string | undefined;
|
|
@@ -47,6 +56,7 @@ declare interface BuildOptions {
|
|
|
47
56
|
) => Promise<CompareDependencyVersionsResult>;
|
|
48
57
|
determineBasePath: () => string;
|
|
49
58
|
entry: string | undefined;
|
|
59
|
+
eventListener: Partial<BuildAppEventListener>;
|
|
50
60
|
isWorkbenchApp: boolean;
|
|
51
61
|
minify: boolean;
|
|
52
62
|
outDir: string | undefined;
|
|
@@ -74,6 +84,7 @@ declare interface BuildOptions_2 {
|
|
|
74
84
|
}[],
|
|
75
85
|
) => Promise<CompareDependencyVersionsResult>;
|
|
76
86
|
determineBasePath: () => string;
|
|
87
|
+
eventListener: Partial<BuildStudioEventListener>;
|
|
77
88
|
isApp: boolean;
|
|
78
89
|
isWorkbenchApp: boolean;
|
|
79
90
|
minify: boolean;
|
|
@@ -84,9 +95,6 @@ declare interface BuildOptions_2 {
|
|
|
84
95
|
sourceMap: boolean;
|
|
85
96
|
stats: boolean;
|
|
86
97
|
unattendedMode: boolean;
|
|
87
|
-
upgradePackages(options: {
|
|
88
|
-
packages: [name: string, version: string][];
|
|
89
|
-
}): Promise<void>;
|
|
90
98
|
vite: UserViteConfig | undefined;
|
|
91
99
|
workDir: string;
|
|
92
100
|
exposes?: WorkbenchExposes;
|
|
@@ -109,6 +117,32 @@ export declare function buildStaticFiles(options: StaticBuildOptions): Promise<{
|
|
|
109
117
|
*/
|
|
110
118
|
export declare function buildStudio(options: BuildOptions_2): Promise<void>;
|
|
111
119
|
|
|
120
|
+
export declare interface BuildStudioEventListener extends BuildEventListener {
|
|
121
|
+
onBuildEnd: MessageFunc;
|
|
122
|
+
onBuildFail: MessageFunc;
|
|
123
|
+
onBuildStart: MessageFunc;
|
|
124
|
+
onCleanOutputDirEnd: MessageFunc;
|
|
125
|
+
onCleanOutputDirStart: MessageFunc;
|
|
126
|
+
onIncompatibleDeclaredStyledComponentsVersionRange: MessageFunc;
|
|
127
|
+
onIncompatibleInstalledStyledComponentsVersionRange: MessageFunc;
|
|
128
|
+
onInteractiveNonDefaultOutputDir({ message }: { message: string }): Promise<{
|
|
129
|
+
shouldClean: boolean;
|
|
130
|
+
}>;
|
|
131
|
+
onInvalidStyledComponentsVersionRange: MessageFunc;
|
|
132
|
+
onNoDeclaredStyledComponentsVersion: MessageFunc;
|
|
133
|
+
onNoInstalledSanityVersion: MessageFunc;
|
|
134
|
+
onNoInstalledStyledComponentsVersion: MessageFunc;
|
|
135
|
+
onVersionMismatchInInteractiveAutoUpdate(params: {
|
|
136
|
+
mismatched: CompareDependencyVersions[];
|
|
137
|
+
versionMismatchWarning: string;
|
|
138
|
+
}): Promise<{
|
|
139
|
+
stopBuild: boolean;
|
|
140
|
+
}>;
|
|
141
|
+
onVersionMismatchInNonInteractiveAutoUpdate(params: {
|
|
142
|
+
versionMismatchWarning: string;
|
|
143
|
+
}): void;
|
|
144
|
+
}
|
|
145
|
+
|
|
112
146
|
/**
|
|
113
147
|
* Checks that the studio has declared and installed the required dependencies
|
|
114
148
|
* needed by the Sanity modules. While we generally use regular, explicit
|
|
@@ -126,8 +160,13 @@ export declare function checkRequiredDependencies(
|
|
|
126
160
|
|
|
127
161
|
declare interface CheckRequiredDependenciesOptions {
|
|
128
162
|
isApp: boolean;
|
|
129
|
-
output: Output;
|
|
130
163
|
workDir: string;
|
|
164
|
+
onIncompatibleDeclaredStyledComponentsVersionRange?: BuildStudioEventListener["onIncompatibleDeclaredStyledComponentsVersionRange"];
|
|
165
|
+
onIncompatibleInstalledStyledComponentsVersionRange?: BuildStudioEventListener["onIncompatibleInstalledStyledComponentsVersionRange"];
|
|
166
|
+
onInvalidStyledComponentsVersionRange?: BuildStudioEventListener["onInvalidStyledComponentsVersionRange"];
|
|
167
|
+
onNoDeclaredStyledComponentsVersion?: BuildStudioEventListener["onNoDeclaredStyledComponentsVersion"];
|
|
168
|
+
onNoInstalledSanityVersion?: BuildStudioEventListener["onNoInstalledSanityVersion"];
|
|
169
|
+
onNoInstalledStyledComponentsVersion?: BuildStudioEventListener["onNoInstalledStyledComponentsVersion"];
|
|
131
170
|
}
|
|
132
171
|
|
|
133
172
|
declare interface CheckResult {
|
|
@@ -224,6 +263,8 @@ export declare function getViteConfig(
|
|
|
224
263
|
options: ViteOptions,
|
|
225
264
|
): Promise<InlineConfig>;
|
|
226
265
|
|
|
266
|
+
declare type MessageFunc = ({ message }: { message: string }) => void;
|
|
267
|
+
|
|
227
268
|
/**
|
|
228
269
|
* Resolves vendor package entry points and metadata for a combined studio/app build.
|
|
229
270
|
* Does not run a build — callers add `entries` to the main Vite/Rolldown input and
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/_exports/_internal/build.ts"],"sourcesContent":["export {buildApp} from '../../actions/build/buildApp.js'\nexport {buildStaticFiles} from '../../actions/build/buildStaticFiles.js'\nexport {buildStudio} from '../../actions/build/buildStudio.js'\nexport {checkRequiredDependencies} from '../../actions/build/checkRequiredDependencies.js'\nexport {checkStudioDependencyVersions} from '../../actions/build/checkStudioDependencyVersions.js'\nexport {extendViteConfigWithUserConfig, getViteConfig} from '../../actions/build/getViteConfig.js'\nexport {resolveVendorBuildConfig} from '../../actions/build/resolveVendorBuildConfig.js'\nexport {writeSanityRuntime} from '../../actions/build/writeSanityRuntime.js'\nexport {SANITY_CACHE_DIR} from '../../constants.js'\nexport {\n compareDependencyVersions,\n type CompareDependencyVersions,\n type CompareDependencyVersionsResult,\n type UnresolvedPrerelease,\n} from '../../util/compareDependencyVersions.js'\n"],"names":["buildApp","buildStaticFiles","buildStudio","checkRequiredDependencies","checkStudioDependencyVersions","extendViteConfigWithUserConfig","getViteConfig","resolveVendorBuildConfig","writeSanityRuntime","SANITY_CACHE_DIR","compareDependencyVersions"],"mappings":"AAAA,SAAQA,QAAQ,
|
|
1
|
+
{"version":3,"sources":["../../../src/_exports/_internal/build.ts"],"sourcesContent":["export {buildApp, type BuildAppEventListener} from '../../actions/build/buildApp.js'\nexport {buildStaticFiles} from '../../actions/build/buildStaticFiles.js'\nexport {buildStudio, type BuildStudioEventListener} from '../../actions/build/buildStudio.js'\nexport {checkRequiredDependencies} from '../../actions/build/checkRequiredDependencies.js'\nexport {checkStudioDependencyVersions} from '../../actions/build/checkStudioDependencyVersions.js'\nexport {extendViteConfigWithUserConfig, getViteConfig} from '../../actions/build/getViteConfig.js'\nexport {resolveVendorBuildConfig} from '../../actions/build/resolveVendorBuildConfig.js'\nexport {writeSanityRuntime} from '../../actions/build/writeSanityRuntime.js'\nexport {SANITY_CACHE_DIR} from '../../constants.js'\nexport {\n compareDependencyVersions,\n type CompareDependencyVersions,\n type CompareDependencyVersionsResult,\n type UnresolvedPrerelease,\n} from '../../util/compareDependencyVersions.js'\n"],"names":["buildApp","buildStaticFiles","buildStudio","checkRequiredDependencies","checkStudioDependencyVersions","extendViteConfigWithUserConfig","getViteConfig","resolveVendorBuildConfig","writeSanityRuntime","SANITY_CACHE_DIR","compareDependencyVersions"],"mappings":"AAAA,SAAQA,QAAQ,QAAmC,kCAAiC;AACpF,SAAQC,gBAAgB,QAAO,0CAAyC;AACxE,SAAQC,WAAW,QAAsC,qCAAoC;AAC7F,SAAQC,yBAAyB,QAAO,mDAAkD;AAC1F,SAAQC,6BAA6B,QAAO,uDAAsD;AAClG,SAAQC,8BAA8B,EAAEC,aAAa,QAAO,uCAAsC;AAClG,SAAQC,wBAAwB,QAAO,kDAAiD;AACxF,SAAQC,kBAAkB,QAAO,4CAA2C;AAC5E,SAAQC,gBAAgB,QAAO,qBAAoB;AACnD,SACEC,yBAAyB,QAIpB,0CAAyC"}
|
|
@@ -19,7 +19,7 @@ import { resolveVendorBuildConfig } from './resolveVendorBuildConfig.js';
|
|
|
19
19
|
* @param options - options for the build
|
|
20
20
|
*/ export async function buildApp(options) {
|
|
21
21
|
buildDebug(`Building app`);
|
|
22
|
-
const { appId, determineBasePath, outDir, output, workDir } = options;
|
|
22
|
+
const { appId, determineBasePath, eventListener, outDir, output, workDir } = options;
|
|
23
23
|
let { autoUpdatesEnabled } = options;
|
|
24
24
|
const unattendedMode = options.unattendedMode;
|
|
25
25
|
const timer = getTimer();
|
|
@@ -76,7 +76,8 @@ import { resolveVendorBuildConfig } from './resolveVendorBuildConfig.js';
|
|
|
76
76
|
const { mismatched, unresolvedPrerelease } = await options.compareDependencyVersions(autoUpdatedPackages);
|
|
77
77
|
if (unresolvedPrerelease.length > 0) {
|
|
78
78
|
await handlePrereleaseVersions({
|
|
79
|
-
|
|
79
|
+
onPreReleaseInInteractiveAutoUpdate: eventListener.onPreReleaseInInteractiveAutoUpdate,
|
|
80
|
+
onPreReleaseInNonInteractiveAutoUpdate: eventListener.onPreReleaseInNonInteractiveAutoUpdate,
|
|
80
81
|
unattendedMode,
|
|
81
82
|
unresolvedPrerelease
|
|
82
83
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/actions/build/buildApp.ts"],"sourcesContent":["import {rm} from 'node:fs/promises'\nimport path from 'node:path'\nimport {styleText} from 'node:util'\n\nimport {getLocalPackageVersion} from '@sanity/cli-core/package-manager'\nimport {getCliTelemetry} from '@sanity/cli-core/telemetry'\nimport {type CliConfig, type Output, type UserViteConfig} from '@sanity/cli-core/types'\nimport {isInteractive} from '@sanity/cli-core/util'\nimport {confirm, getTimer, logSymbols, spinner, type SpinnerInstance} from '@sanity/cli-core/ux'\nimport {type WorkbenchExposes} from '@sanity/workbench-cli/build'\nimport {parse as semverParse} from 'semver'\n\nimport {AppBuildTrace} from '../../telemetry/build.telemetry.js'\nimport {CompareDependencyVersionsResult} from '../../util/compareDependencyVersions.js'\nimport {formatModuleSizes, sortModulesBySize} from '../../util/moduleFormatUtils.js'\nimport {buildDebug} from './buildDebug.js'\nimport {buildStaticFiles} from './buildStaticFiles.js'\nimport {getAutoUpdatesCssUrls, getAutoUpdatesImportMap} from './getAutoUpdatesImportMap.js'\nimport {getAppEnvironmentVariables} from './getEnvironmentVariables.js'\nimport {handlePrereleaseVersions} from './handlePrereleaseVersions.js'\nimport {resolveVendorBuildConfig} from './resolveVendorBuildConfig.js'\n\nexport interface BuildOptions {\n appId: string | undefined\n appTitle: string | undefined\n autoUpdatesEnabled: boolean\n checkAppId: () => void\n compareDependencyVersions: (\n packages: {name: string; version: string}[],\n ) => Promise<CompareDependencyVersionsResult>\n determineBasePath: () => string\n entry: string | undefined\n isWorkbenchApp: boolean\n minify: boolean\n outDir: string | undefined\n output: Output\n reactCompiler: CliConfig['reactCompiler']\n schemaExtraction: CliConfig['schemaExtraction']\n sourceMap: boolean\n stats: boolean\n unattendedMode: boolean\n vite: UserViteConfig | undefined\n workDir: string\n\n exposes?: WorkbenchExposes\n\n /** The workbench app's bus identity (`__SANITY_APP_ID__`). */\n workbenchAppId?: string\n}\n\n/**\n * Internal build app that avoids depending on flags for CLI config.\n * @param options - options for the build\n */\nexport async function buildApp(options: BuildOptions): Promise<void> {\n buildDebug(`Building app`)\n\n const {appId, determineBasePath, outDir, output, workDir} = options\n let {autoUpdatesEnabled} = options\n const unattendedMode = options.unattendedMode\n\n const timer = getTimer()\n\n const defaultOutputDir = path.resolve(path.join(workDir, 'dist'))\n const outputDir = path.resolve(outDir || defaultOutputDir)\n\n const installedSdkVersion = await getLocalPackageVersion('@sanity/sdk-react', workDir)\n const installedSanityVersion = await getLocalPackageVersion('sanity', workDir)\n\n if (!installedSdkVersion) {\n output.error(`Failed to find installed @sanity/sdk-react version`, {exit: 1})\n return\n }\n\n let autoUpdatesImports = {}\n let autoUpdatesCssUrls: string[] = []\n\n if (autoUpdatesEnabled) {\n // Get the clean version without build metadata: https://semver.org/#spec-item-10\n const cleanSDKVersion = semverParse(installedSdkVersion)?.version\n if (!cleanSDKVersion) {\n output.error(`Failed to parse installed SDK version: ${installedSdkVersion}`, {exit: 1})\n return\n }\n\n // Sanity might not be installed, but if it is, we want to auto update it.\n const cleanSanityVersion = semverParse(installedSanityVersion)?.version\n\n const autoUpdatedPackages = [\n {name: '@sanity/sdk', version: cleanSDKVersion},\n {name: '@sanity/sdk-react', version: cleanSDKVersion},\n ...(cleanSanityVersion\n ? [{cssFile: 'index.css', name: 'sanity' as const, version: cleanSanityVersion}]\n : []),\n ]\n autoUpdatesImports = getAutoUpdatesImportMap(autoUpdatedPackages, {appId})\n autoUpdatesCssUrls = getAutoUpdatesCssUrls(autoUpdatedPackages, {appId})\n\n output.log(`${logSymbols.info} Building with auto-updates enabled`)\n\n // Warn if auto updates enabled but no appId configured.\n options.checkAppId()\n\n // Check the versions\n const {mismatched, unresolvedPrerelease} =\n await options.compareDependencyVersions(autoUpdatedPackages)\n\n if (unresolvedPrerelease.length > 0) {\n await handlePrereleaseVersions({output, unattendedMode, unresolvedPrerelease})\n autoUpdatesImports = {}\n autoUpdatesCssUrls = []\n autoUpdatesEnabled = false\n }\n\n if (mismatched.length > 0 && autoUpdatesEnabled) {\n const versionMismatchWarning =\n `The following local package versions are different from the versions currently served at runtime.\\n` +\n `When using auto updates, we recommend that you test locally with the same versions before deploying. \\n\\n` +\n `${mismatched.map((mod) => ` - ${mod.pkg} (local version: ${mod.installed}, runtime version: ${mod.remote})`).join('\\n')}`\n\n // If it is non-interactive or in unattended mode, we don't want to prompt\n if (isInteractive() && !unattendedMode) {\n const shouldContinue = await confirm({\n default: false,\n message: styleText('yellow', `${versionMismatchWarning} \\n\\nContinue anyway?`),\n })\n\n if (!shouldContinue) {\n output.error('Declined to continue with build', {exit: 1})\n return\n }\n } else {\n // if non-interactive or unattended, just show the warning\n output.warn(versionMismatchWarning)\n }\n }\n }\n\n const envVarKeys = Object.keys(getAppEnvironmentVariables())\n if (envVarKeys.length > 0) {\n output.log('\\nIncluding the following environment variables as part of the JavaScript bundle:')\n for (const key of envVarKeys) output.log(`- ${key}`)\n output.log('')\n }\n\n let shouldClean = true\n if (outputDir !== defaultOutputDir && !unattendedMode && isInteractive()) {\n shouldClean = await confirm({\n default: true,\n message: `Do you want to delete the existing directory (${outputDir}) first?`,\n })\n }\n\n const basePath = determineBasePath()\n\n let spin: SpinnerInstance\n if (shouldClean) {\n timer.start('cleanOutputFolder')\n spin = spinner('Clean output folder').start()\n await rm(outputDir, {force: true, recursive: true})\n const cleanDuration = timer.end('cleanOutputFolder')\n spin.text = `Clean output folder (${cleanDuration.toFixed(0)}ms)`\n spin.succeed()\n }\n\n spin = spinner(`Building Sanity application`).start()\n\n const trace = getCliTelemetry().trace(AppBuildTrace)\n trace.start()\n\n let autoUpdates\n if (autoUpdatesEnabled && !options.isWorkbenchApp) {\n autoUpdates = {\n cssUrls: autoUpdatesCssUrls,\n imports: autoUpdatesImports,\n vendor: await resolveVendorBuildConfig({cwd: workDir, isApp: true}),\n }\n }\n\n try {\n timer.start('bundleStudio')\n\n const bundle = await buildStaticFiles({\n appTitle: options.appTitle,\n autoUpdates,\n basePath,\n cwd: workDir,\n entry: options.entry,\n exposes: options.exposes,\n isApp: true,\n isWorkbenchApp: options.isWorkbenchApp,\n minify: options.minify,\n outputDir,\n reactCompiler: options.reactCompiler,\n schemaExtraction: options.schemaExtraction,\n sourceMap: options.sourceMap,\n vite: options.vite,\n workbenchAppId: options.workbenchAppId,\n })\n\n trace.log({\n outputSize: bundle.chunks\n .flatMap((chunk) => chunk.modules.flatMap((mod) => mod.renderedLength))\n .reduce((sum, n) => sum + n, 0),\n })\n const buildDuration = timer.end('bundleStudio')\n\n spin.text = `Build Sanity application (${buildDuration.toFixed(0)}ms)`\n spin.succeed()\n\n if (options.stats) {\n output.log('\\nLargest module files:')\n output.log(formatModuleSizes(sortModulesBySize(bundle.chunks).slice(0, 15)))\n }\n\n trace.complete()\n } catch (error) {\n spin.fail()\n trace.error(error)\n const message = error instanceof Error ? error.message : String(error)\n buildDebug(`Failed to build Sanity application`, {error})\n output.error(`Failed to build Sanity application: ${message}`, {exit: 1})\n }\n}\n"],"names":["rm","path","styleText","getLocalPackageVersion","getCliTelemetry","isInteractive","confirm","getTimer","logSymbols","spinner","parse","semverParse","AppBuildTrace","formatModuleSizes","sortModulesBySize","buildDebug","buildStaticFiles","getAutoUpdatesCssUrls","getAutoUpdatesImportMap","getAppEnvironmentVariables","handlePrereleaseVersions","resolveVendorBuildConfig","buildApp","options","appId","determineBasePath","outDir","output","workDir","autoUpdatesEnabled","unattendedMode","timer","defaultOutputDir","resolve","join","outputDir","installedSdkVersion","installedSanityVersion","error","exit","autoUpdatesImports","autoUpdatesCssUrls","cleanSDKVersion","version","cleanSanityVersion","autoUpdatedPackages","name","cssFile","log","info","checkAppId","mismatched","unresolvedPrerelease","compareDependencyVersions","length","versionMismatchWarning","map","mod","pkg","installed","remote","shouldContinue","default","message","warn","envVarKeys","Object","keys","key","shouldClean","basePath","spin","start","force","recursive","cleanDuration","end","text","toFixed","succeed","trace","autoUpdates","isWorkbenchApp","cssUrls","imports","vendor","cwd","isApp","bundle","appTitle","entry","exposes","minify","reactCompiler","schemaExtraction","sourceMap","vite","workbenchAppId","outputSize","chunks","flatMap","chunk","modules","renderedLength","reduce","sum","n","buildDuration","stats","slice","complete","fail","Error","String"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../../../src/actions/build/buildApp.ts"],"sourcesContent":["import {rm} from 'node:fs/promises'\nimport path from 'node:path'\nimport {styleText} from 'node:util'\n\nimport {getLocalPackageVersion} from '@sanity/cli-core/package-manager'\nimport {getCliTelemetry} from '@sanity/cli-core/telemetry'\nimport {type CliConfig, type Output, type UserViteConfig} from '@sanity/cli-core/types'\nimport {isInteractive} from '@sanity/cli-core/util'\nimport {confirm, getTimer, logSymbols, spinner, type SpinnerInstance} from '@sanity/cli-core/ux'\nimport {type WorkbenchExposes} from '@sanity/workbench-cli/build'\nimport {parse as semverParse} from 'semver'\n\nimport {AppBuildTrace} from '../../telemetry/build.telemetry.js'\nimport {CompareDependencyVersionsResult} from '../../util/compareDependencyVersions.js'\nimport {formatModuleSizes, sortModulesBySize} from '../../util/moduleFormatUtils.js'\nimport {buildDebug} from './buildDebug.js'\nimport {buildStaticFiles} from './buildStaticFiles.js'\nimport {BuildEventListener} from './eventListener.js'\nimport {getAutoUpdatesCssUrls, getAutoUpdatesImportMap} from './getAutoUpdatesImportMap.js'\nimport {getAppEnvironmentVariables} from './getEnvironmentVariables.js'\nimport {handlePrereleaseVersions} from './handlePrereleaseVersions.js'\nimport {resolveVendorBuildConfig} from './resolveVendorBuildConfig.js'\n\nexport type BuildAppEventListener = BuildEventListener\nexport interface BuildOptions {\n appId: string | undefined\n appTitle: string | undefined\n autoUpdatesEnabled: boolean\n checkAppId: () => void\n compareDependencyVersions: (\n packages: {name: string; version: string}[],\n ) => Promise<CompareDependencyVersionsResult>\n determineBasePath: () => string\n entry: string | undefined\n eventListener: Partial<BuildAppEventListener>\n isWorkbenchApp: boolean\n minify: boolean\n outDir: string | undefined\n output: Output\n reactCompiler: CliConfig['reactCompiler']\n schemaExtraction: CliConfig['schemaExtraction']\n sourceMap: boolean\n stats: boolean\n unattendedMode: boolean\n vite: UserViteConfig | undefined\n workDir: string\n\n exposes?: WorkbenchExposes\n\n /** The workbench app's bus identity (`__SANITY_APP_ID__`). */\n workbenchAppId?: string\n}\n\n/**\n * Internal build app that avoids depending on flags for CLI config.\n * @param options - options for the build\n */\nexport async function buildApp(options: BuildOptions): Promise<void> {\n buildDebug(`Building app`)\n\n const {appId, determineBasePath, eventListener, outDir, output, workDir} = options\n let {autoUpdatesEnabled} = options\n const unattendedMode = options.unattendedMode\n\n const timer = getTimer()\n\n const defaultOutputDir = path.resolve(path.join(workDir, 'dist'))\n const outputDir = path.resolve(outDir || defaultOutputDir)\n\n const installedSdkVersion = await getLocalPackageVersion('@sanity/sdk-react', workDir)\n const installedSanityVersion = await getLocalPackageVersion('sanity', workDir)\n\n if (!installedSdkVersion) {\n output.error(`Failed to find installed @sanity/sdk-react version`, {exit: 1})\n return\n }\n\n let autoUpdatesImports = {}\n let autoUpdatesCssUrls: string[] = []\n\n if (autoUpdatesEnabled) {\n // Get the clean version without build metadata: https://semver.org/#spec-item-10\n const cleanSDKVersion = semverParse(installedSdkVersion)?.version\n if (!cleanSDKVersion) {\n output.error(`Failed to parse installed SDK version: ${installedSdkVersion}`, {exit: 1})\n return\n }\n\n // Sanity might not be installed, but if it is, we want to auto update it.\n const cleanSanityVersion = semverParse(installedSanityVersion)?.version\n\n const autoUpdatedPackages = [\n {name: '@sanity/sdk', version: cleanSDKVersion},\n {name: '@sanity/sdk-react', version: cleanSDKVersion},\n ...(cleanSanityVersion\n ? [{cssFile: 'index.css', name: 'sanity' as const, version: cleanSanityVersion}]\n : []),\n ]\n autoUpdatesImports = getAutoUpdatesImportMap(autoUpdatedPackages, {appId})\n autoUpdatesCssUrls = getAutoUpdatesCssUrls(autoUpdatedPackages, {appId})\n\n output.log(`${logSymbols.info} Building with auto-updates enabled`)\n\n // Warn if auto updates enabled but no appId configured.\n options.checkAppId()\n\n // Check the versions\n const {mismatched, unresolvedPrerelease} =\n await options.compareDependencyVersions(autoUpdatedPackages)\n\n if (unresolvedPrerelease.length > 0) {\n await handlePrereleaseVersions({\n onPreReleaseInInteractiveAutoUpdate: eventListener.onPreReleaseInInteractiveAutoUpdate,\n onPreReleaseInNonInteractiveAutoUpdate:\n eventListener.onPreReleaseInNonInteractiveAutoUpdate,\n unattendedMode,\n unresolvedPrerelease,\n })\n autoUpdatesImports = {}\n autoUpdatesCssUrls = []\n autoUpdatesEnabled = false\n }\n\n if (mismatched.length > 0 && autoUpdatesEnabled) {\n const versionMismatchWarning =\n `The following local package versions are different from the versions currently served at runtime.\\n` +\n `When using auto updates, we recommend that you test locally with the same versions before deploying. \\n\\n` +\n `${mismatched.map((mod) => ` - ${mod.pkg} (local version: ${mod.installed}, runtime version: ${mod.remote})`).join('\\n')}`\n\n // If it is non-interactive or in unattended mode, we don't want to prompt\n if (isInteractive() && !unattendedMode) {\n const shouldContinue = await confirm({\n default: false,\n message: styleText('yellow', `${versionMismatchWarning} \\n\\nContinue anyway?`),\n })\n\n if (!shouldContinue) {\n output.error('Declined to continue with build', {exit: 1})\n return\n }\n } else {\n // if non-interactive or unattended, just show the warning\n output.warn(versionMismatchWarning)\n }\n }\n }\n\n const envVarKeys = Object.keys(getAppEnvironmentVariables())\n if (envVarKeys.length > 0) {\n output.log('\\nIncluding the following environment variables as part of the JavaScript bundle:')\n for (const key of envVarKeys) output.log(`- ${key}`)\n output.log('')\n }\n\n let shouldClean = true\n if (outputDir !== defaultOutputDir && !unattendedMode && isInteractive()) {\n shouldClean = await confirm({\n default: true,\n message: `Do you want to delete the existing directory (${outputDir}) first?`,\n })\n }\n\n const basePath = determineBasePath()\n\n let spin: SpinnerInstance\n if (shouldClean) {\n timer.start('cleanOutputFolder')\n spin = spinner('Clean output folder').start()\n await rm(outputDir, {force: true, recursive: true})\n const cleanDuration = timer.end('cleanOutputFolder')\n spin.text = `Clean output folder (${cleanDuration.toFixed(0)}ms)`\n spin.succeed()\n }\n\n spin = spinner(`Building Sanity application`).start()\n\n const trace = getCliTelemetry().trace(AppBuildTrace)\n trace.start()\n\n let autoUpdates\n if (autoUpdatesEnabled && !options.isWorkbenchApp) {\n autoUpdates = {\n cssUrls: autoUpdatesCssUrls,\n imports: autoUpdatesImports,\n vendor: await resolveVendorBuildConfig({cwd: workDir, isApp: true}),\n }\n }\n\n try {\n timer.start('bundleStudio')\n\n const bundle = await buildStaticFiles({\n appTitle: options.appTitle,\n autoUpdates,\n basePath,\n cwd: workDir,\n entry: options.entry,\n exposes: options.exposes,\n isApp: true,\n isWorkbenchApp: options.isWorkbenchApp,\n minify: options.minify,\n outputDir,\n reactCompiler: options.reactCompiler,\n schemaExtraction: options.schemaExtraction,\n sourceMap: options.sourceMap,\n vite: options.vite,\n workbenchAppId: options.workbenchAppId,\n })\n\n trace.log({\n outputSize: bundle.chunks\n .flatMap((chunk) => chunk.modules.flatMap((mod) => mod.renderedLength))\n .reduce((sum, n) => sum + n, 0),\n })\n const buildDuration = timer.end('bundleStudio')\n\n spin.text = `Build Sanity application (${buildDuration.toFixed(0)}ms)`\n spin.succeed()\n\n if (options.stats) {\n output.log('\\nLargest module files:')\n output.log(formatModuleSizes(sortModulesBySize(bundle.chunks).slice(0, 15)))\n }\n\n trace.complete()\n } catch (error) {\n spin.fail()\n trace.error(error)\n const message = error instanceof Error ? error.message : String(error)\n buildDebug(`Failed to build Sanity application`, {error})\n output.error(`Failed to build Sanity application: ${message}`, {exit: 1})\n }\n}\n"],"names":["rm","path","styleText","getLocalPackageVersion","getCliTelemetry","isInteractive","confirm","getTimer","logSymbols","spinner","parse","semverParse","AppBuildTrace","formatModuleSizes","sortModulesBySize","buildDebug","buildStaticFiles","getAutoUpdatesCssUrls","getAutoUpdatesImportMap","getAppEnvironmentVariables","handlePrereleaseVersions","resolveVendorBuildConfig","buildApp","options","appId","determineBasePath","eventListener","outDir","output","workDir","autoUpdatesEnabled","unattendedMode","timer","defaultOutputDir","resolve","join","outputDir","installedSdkVersion","installedSanityVersion","error","exit","autoUpdatesImports","autoUpdatesCssUrls","cleanSDKVersion","version","cleanSanityVersion","autoUpdatedPackages","name","cssFile","log","info","checkAppId","mismatched","unresolvedPrerelease","compareDependencyVersions","length","onPreReleaseInInteractiveAutoUpdate","onPreReleaseInNonInteractiveAutoUpdate","versionMismatchWarning","map","mod","pkg","installed","remote","shouldContinue","default","message","warn","envVarKeys","Object","keys","key","shouldClean","basePath","spin","start","force","recursive","cleanDuration","end","text","toFixed","succeed","trace","autoUpdates","isWorkbenchApp","cssUrls","imports","vendor","cwd","isApp","bundle","appTitle","entry","exposes","minify","reactCompiler","schemaExtraction","sourceMap","vite","workbenchAppId","outputSize","chunks","flatMap","chunk","modules","renderedLength","reduce","sum","n","buildDuration","stats","slice","complete","fail","Error","String"],"mappings":"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"}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { rm } from 'node:fs/promises';
|
|
2
2
|
import path from 'node:path';
|
|
3
|
-
import { styleText } from 'node:util';
|
|
4
3
|
import { getLocalPackageVersion } from '@sanity/cli-core/package-manager';
|
|
5
4
|
import { getCliTelemetry } from '@sanity/cli-core/telemetry';
|
|
6
5
|
import { isInteractive } from '@sanity/cli-core/util';
|
|
7
|
-
import {
|
|
6
|
+
import { getTimer, logSymbols } from '@sanity/cli-core/ux';
|
|
8
7
|
import { parse as semverParse } from 'semver';
|
|
9
8
|
import { StudioBuildTrace } from '../../telemetry/build.telemetry.js';
|
|
10
9
|
import { formatModuleSizes, sortModulesBySize } from '../../util/moduleFormatUtils.js';
|
|
@@ -22,7 +21,7 @@ import { resolveVendorBuildConfig } from './resolveVendorBuildConfig.js';
|
|
|
22
21
|
*/ export async function buildStudio(options) {
|
|
23
22
|
buildDebug(`Building studio`);
|
|
24
23
|
const timer = getTimer();
|
|
25
|
-
const { appId, determineBasePath, exposes, isApp, minify, outDir, output, reactCompiler, schemaExtraction, sourceMap, stats, unattendedMode,
|
|
24
|
+
const { appId, determineBasePath, eventListener, exposes, isApp, minify, outDir, output, reactCompiler, schemaExtraction, sourceMap, stats, unattendedMode, vite, workDir } = options;
|
|
26
25
|
const defaultOutputDir = path.resolve(path.join(workDir, 'dist'));
|
|
27
26
|
const outputDir = path.resolve(outDir || defaultOutputDir);
|
|
28
27
|
await checkStudioDependencyVersions(workDir, output);
|
|
@@ -30,8 +29,8 @@ import { resolveVendorBuildConfig } from './resolveVendorBuildConfig.js';
|
|
|
30
29
|
// thus we want to exit early
|
|
31
30
|
const { installedSanityVersion } = await checkRequiredDependencies({
|
|
32
31
|
isApp,
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
workDir,
|
|
33
|
+
...eventListener
|
|
35
34
|
});
|
|
36
35
|
let autoUpdatesEnabled = options.autoUpdatesEnabled;
|
|
37
36
|
let autoUpdatesImports = {};
|
|
@@ -76,9 +75,9 @@ import { resolveVendorBuildConfig } from './resolveVendorBuildConfig.js';
|
|
|
76
75
|
const { mismatched, unresolvedPrerelease } = await options.compareDependencyVersions(sanityDependencies);
|
|
77
76
|
if (unresolvedPrerelease.length > 0) {
|
|
78
77
|
await handlePrereleaseVersions({
|
|
79
|
-
output,
|
|
80
78
|
unattendedMode,
|
|
81
|
-
unresolvedPrerelease
|
|
79
|
+
unresolvedPrerelease,
|
|
80
|
+
...eventListener
|
|
82
81
|
});
|
|
83
82
|
autoUpdatesImports = {};
|
|
84
83
|
autoUpdatesCssUrls = [];
|
|
@@ -86,50 +85,21 @@ import { resolveVendorBuildConfig } from './resolveVendorBuildConfig.js';
|
|
|
86
85
|
}
|
|
87
86
|
if (mismatched.length > 0 && autoUpdatesEnabled) {
|
|
88
87
|
const versionMismatchWarning = `The following local package versions are different from the versions currently served at runtime.\n` + `When using auto updates, we recommend that you test locally with the same versions before deploying. \n\n` + `${mismatched.map((mod)=>` - ${mod.pkg} (local version: ${mod.installed}, runtime version: ${mod.remote})`).join('\n')}`;
|
|
88
|
+
const { onVersionMismatchInInteractiveAutoUpdate = ()=>({
|
|
89
|
+
stopBuild: true
|
|
90
|
+
}), onVersionMismatchInNonInteractiveAutoUpdate = ()=>{} } = eventListener;
|
|
89
91
|
// If it is non-interactive or in unattended mode, we don't want to prompt
|
|
90
92
|
if (isInteractive() && !unattendedMode) {
|
|
91
|
-
const
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
name: `Upgrade local versions (recommended). You will need to run the build command again`,
|
|
95
|
-
value: 'upgrade'
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: `Upgrade and proceed with build`,
|
|
99
|
-
value: 'upgrade-and-proceed'
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
name: `Continue anyway`,
|
|
103
|
-
value: 'continue'
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
name: 'Cancel',
|
|
107
|
-
value: 'cancel'
|
|
108
|
-
}
|
|
109
|
-
],
|
|
110
|
-
default: 'upgrade',
|
|
111
|
-
message: styleText('yellow', `${logSymbols.warning} ${versionMismatchWarning}\n\nDo you want to upgrade local versions before deploying?`)
|
|
93
|
+
const { stopBuild } = await onVersionMismatchInInteractiveAutoUpdate({
|
|
94
|
+
mismatched,
|
|
95
|
+
versionMismatchWarning
|
|
112
96
|
});
|
|
113
|
-
if (
|
|
114
|
-
output.error('Declined to continue with build', {
|
|
115
|
-
exit: 1
|
|
116
|
-
});
|
|
117
|
-
return;
|
|
118
|
-
}
|
|
119
|
-
if (choice === 'upgrade' || choice === 'upgrade-and-proceed') {
|
|
120
|
-
await upgradePackages({
|
|
121
|
-
packages: mismatched.map((res)=>[
|
|
122
|
-
res.pkg,
|
|
123
|
-
res.remote
|
|
124
|
-
])
|
|
125
|
-
});
|
|
126
|
-
if (choice === 'upgrade') {
|
|
127
|
-
return;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
97
|
+
if (stopBuild) return;
|
|
130
98
|
} else {
|
|
131
99
|
// if non-interactive or unattended, just show the warning
|
|
132
|
-
|
|
100
|
+
onVersionMismatchInNonInteractiveAutoUpdate({
|
|
101
|
+
versionMismatchWarning
|
|
102
|
+
});
|
|
133
103
|
}
|
|
134
104
|
}
|
|
135
105
|
}
|
|
@@ -143,29 +113,37 @@ import { resolveVendorBuildConfig } from './resolveVendorBuildConfig.js';
|
|
|
143
113
|
}
|
|
144
114
|
let shouldClean = true;
|
|
145
115
|
if (outputDir !== defaultOutputDir && !unattendedMode && isInteractive()) {
|
|
146
|
-
|
|
147
|
-
|
|
116
|
+
const { onInteractiveNonDefaultOutputDir = ()=>({
|
|
117
|
+
shouldClean: true
|
|
118
|
+
}) } = eventListener;
|
|
119
|
+
({ shouldClean } = await onInteractiveNonDefaultOutputDir({
|
|
148
120
|
message: `Do you want to delete the existing directory (${outputDir}) first?`
|
|
149
|
-
});
|
|
121
|
+
}));
|
|
150
122
|
}
|
|
151
123
|
// Determine base path for built studio
|
|
152
124
|
const basePath = determineBasePath();
|
|
153
125
|
if (schemaExtraction?.enabled) {
|
|
154
126
|
output.log(`${logSymbols.info} Building with schema extraction enabled`);
|
|
155
127
|
}
|
|
156
|
-
let spin;
|
|
157
128
|
if (shouldClean) {
|
|
129
|
+
const { onCleanOutputDirEnd = ()=>{}, onCleanOutputDirStart = ()=>{} } = eventListener;
|
|
158
130
|
timer.start('cleanOutputFolder');
|
|
159
|
-
|
|
131
|
+
onCleanOutputDirStart({
|
|
132
|
+
message: 'Clean output folder'
|
|
133
|
+
});
|
|
160
134
|
await rm(outputDir, {
|
|
161
135
|
force: true,
|
|
162
136
|
recursive: true
|
|
163
137
|
});
|
|
164
138
|
const cleanDuration = timer.end('cleanOutputFolder');
|
|
165
|
-
|
|
166
|
-
|
|
139
|
+
onCleanOutputDirEnd({
|
|
140
|
+
message: `Clean output folder (${cleanDuration.toFixed(0)}ms)`
|
|
141
|
+
});
|
|
167
142
|
}
|
|
168
|
-
|
|
143
|
+
const { onBuildEnd = ()=>{}, onBuildFail = ()=>{}, onBuildStart = ()=>{} } = eventListener;
|
|
144
|
+
onBuildStart({
|
|
145
|
+
message: `Build Sanity Studio`
|
|
146
|
+
});
|
|
169
147
|
const trace = getCliTelemetry().trace(StudioBuildTrace);
|
|
170
148
|
trace.start();
|
|
171
149
|
let autoUpdates;
|
|
@@ -199,23 +177,24 @@ import { resolveVendorBuildConfig } from './resolveVendorBuildConfig.js';
|
|
|
199
177
|
outputSize: bundle.chunks.flatMap((chunk)=>chunk.modules.flatMap((mod)=>mod.renderedLength)).reduce((sum, n)=>sum + n, 0)
|
|
200
178
|
});
|
|
201
179
|
const buildDuration = timer.end('bundleStudio');
|
|
202
|
-
|
|
203
|
-
|
|
180
|
+
onBuildEnd({
|
|
181
|
+
message: `Build Sanity Studio (${buildDuration.toFixed(0)}ms)`
|
|
182
|
+
});
|
|
204
183
|
trace.complete();
|
|
205
184
|
if (stats) {
|
|
206
185
|
output.log('\nLargest module files:');
|
|
207
186
|
output.log(formatModuleSizes(sortModulesBySize(bundle.chunks).slice(0, 15)));
|
|
208
187
|
}
|
|
209
188
|
} catch (error) {
|
|
210
|
-
spin.fail();
|
|
211
189
|
trace.error(error);
|
|
212
190
|
const message = error instanceof Error ? error.message : String(error);
|
|
213
191
|
buildDebug(`Failed to build Sanity Studio`, {
|
|
214
192
|
error
|
|
215
193
|
});
|
|
216
|
-
|
|
217
|
-
|
|
194
|
+
onBuildFail({
|
|
195
|
+
message: `Failed to build Sanity Studio: ${message}`
|
|
218
196
|
});
|
|
197
|
+
return;
|
|
219
198
|
}
|
|
220
199
|
}
|
|
221
200
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/actions/build/buildStudio.ts"],"sourcesContent":["import {rm} from 'node:fs/promises'\nimport path from 'node:path'\nimport {styleText} from 'node:util'\n\nimport {getLocalPackageVersion} from '@sanity/cli-core/package-manager'\nimport {getCliTelemetry} from '@sanity/cli-core/telemetry'\nimport {type CliConfig, type Output, type UserViteConfig} from '@sanity/cli-core/types'\nimport {isInteractive} from '@sanity/cli-core/util'\nimport {\n confirm,\n getTimer,\n logSymbols,\n select,\n spinner,\n type SpinnerInstance,\n} from '@sanity/cli-core/ux'\nimport {type WorkbenchExposes} from '@sanity/workbench-cli/build'\nimport {parse as semverParse} from 'semver'\n\nimport {StudioBuildTrace} from '../../telemetry/build.telemetry.js'\nimport {CompareDependencyVersionsResult} from '../../util/compareDependencyVersions.js'\nimport {formatModuleSizes, sortModulesBySize} from '../../util/moduleFormatUtils.js'\nimport {buildDebug} from './buildDebug.js'\nimport {buildStaticFiles} from './buildStaticFiles.js'\nimport {checkRequiredDependencies} from './checkRequiredDependencies.js'\nimport {checkStudioDependencyVersions} from './checkStudioDependencyVersions.js'\nimport {getAutoUpdatesCssUrls, getAutoUpdatesImportMap} from './getAutoUpdatesImportMap.js'\nimport {getStudioEnvironmentVariables} from './getEnvironmentVariables.js'\nimport {handlePrereleaseVersions} from './handlePrereleaseVersions.js'\nimport {resolveVendorBuildConfig} from './resolveVendorBuildConfig.js'\n\nexport interface BuildOptions {\n appId: string | undefined\n autoUpdatesEnabled: boolean\n checkAppId: () => void\n compareDependencyVersions: (\n packages: {name: string; version: string}[],\n ) => Promise<CompareDependencyVersionsResult>\n determineBasePath: () => string\n isApp: boolean\n isWorkbenchApp: boolean\n minify: boolean\n outDir: string | undefined\n output: Output\n reactCompiler: boolean | CliConfig['reactCompiler'] | undefined\n schemaExtraction: CliConfig['schemaExtraction']\n sourceMap: boolean\n stats: boolean\n unattendedMode: boolean\n upgradePackages(options: {packages: [name: string, version: string][]}): Promise<void>\n vite: UserViteConfig | undefined\n workDir: string\n\n exposes?: WorkbenchExposes\n\n /** The workbench app's bus identity (`__SANITY_APP_ID__`). */\n workbenchAppId?: string\n}\n\n/**\n * Internal build studio that avoids depending on flags for CLI config.\n * @param options - options for the build\n */\nexport async function buildStudio(options: BuildOptions): Promise<void> {\n buildDebug(`Building studio`)\n\n const timer = getTimer()\n const {\n appId,\n determineBasePath,\n exposes,\n isApp,\n minify,\n outDir,\n output,\n reactCompiler,\n schemaExtraction,\n sourceMap,\n stats,\n unattendedMode,\n upgradePackages,\n vite,\n workDir,\n } = options\n const defaultOutputDir = path.resolve(path.join(workDir, 'dist'))\n const outputDir = path.resolve(outDir || defaultOutputDir)\n\n await checkStudioDependencyVersions(workDir, output)\n\n // If the check resulted in a dependency install, the CLI command will be re-run,\n // thus we want to exit early\n const {installedSanityVersion} = await checkRequiredDependencies({\n isApp,\n output,\n workDir,\n })\n\n let autoUpdatesEnabled = options.autoUpdatesEnabled\n\n let autoUpdatesImports = {}\n let autoUpdatesCssUrls: string[] = []\n\n if (autoUpdatesEnabled) {\n // Get the clean version without build metadata: https://semver.org/#spec-item-10\n const cleanSanityVersion = semverParse(installedSanityVersion)?.version\n if (!cleanSanityVersion) {\n throw new Error(`Failed to parse installed Sanity version: ${installedSanityVersion}`)\n }\n\n output.log(`${logSymbols.info} Building with auto-updates enabled`)\n\n // Warn if auto updates enabled but no appId configured\n options.checkAppId()\n\n const installedVisionVersion = await getLocalPackageVersion('@sanity/vision', workDir)\n const cleanVisionVersion = installedVisionVersion\n ? semverParse(installedVisionVersion)?.version\n : undefined\n\n const sanityDependencies = [\n {cssFile: 'index.css', name: 'sanity', version: cleanSanityVersion},\n ...(cleanVisionVersion\n ? [{cssFile: 'index.css', name: '@sanity/vision' as const, version: cleanVisionVersion}]\n : [{name: '@sanity/vision' as const, version: cleanSanityVersion}]),\n ]\n autoUpdatesImports = getAutoUpdatesImportMap(sanityDependencies, {appId})\n\n autoUpdatesCssUrls = getAutoUpdatesCssUrls(sanityDependencies, {appId})\n\n // Check the versions\n const {mismatched, unresolvedPrerelease} =\n await options.compareDependencyVersions(sanityDependencies)\n\n if (unresolvedPrerelease.length > 0) {\n await handlePrereleaseVersions({output, unattendedMode, unresolvedPrerelease})\n autoUpdatesImports = {}\n autoUpdatesCssUrls = []\n autoUpdatesEnabled = false\n }\n\n if (mismatched.length > 0 && autoUpdatesEnabled) {\n const versionMismatchWarning =\n `The following local package versions are different from the versions currently served at runtime.\\n` +\n `When using auto updates, we recommend that you test locally with the same versions before deploying. \\n\\n` +\n `${mismatched.map((mod) => ` - ${mod.pkg} (local version: ${mod.installed}, runtime version: ${mod.remote})`).join('\\n')}`\n\n // If it is non-interactive or in unattended mode, we don't want to prompt\n if (isInteractive() && !unattendedMode) {\n const choice = await select({\n choices: [\n {\n name: `Upgrade local versions (recommended). You will need to run the build command again`,\n value: 'upgrade',\n },\n {\n name: `Upgrade and proceed with build`,\n value: 'upgrade-and-proceed',\n },\n {\n name: `Continue anyway`,\n value: 'continue',\n },\n {name: 'Cancel', value: 'cancel'},\n ],\n default: 'upgrade',\n message: styleText(\n 'yellow',\n `${logSymbols.warning} ${versionMismatchWarning}\\n\\nDo you want to upgrade local versions before deploying?`,\n ),\n })\n\n if (choice === 'cancel') {\n output.error('Declined to continue with build', {exit: 1})\n return\n }\n\n if (choice === 'upgrade' || choice === 'upgrade-and-proceed') {\n await upgradePackages({\n packages: mismatched.map((res) => [res.pkg, res.remote]),\n })\n\n if (choice === 'upgrade') {\n return\n }\n }\n } else {\n // if non-interactive or unattended, just show the warning\n output.warn(versionMismatchWarning)\n }\n }\n }\n\n const envVarKeys = Object.keys(getStudioEnvironmentVariables())\n if (envVarKeys.length > 0) {\n output.log('\\nIncluding the following environment variables as part of the JavaScript bundle:')\n for (const key of envVarKeys) {\n output.log(`- ${key}`)\n }\n output.log('')\n }\n\n let shouldClean = true\n if (outputDir !== defaultOutputDir && !unattendedMode && isInteractive()) {\n shouldClean = await confirm({\n default: true,\n message: `Do you want to delete the existing directory (${outputDir}) first?`,\n })\n }\n\n // Determine base path for built studio\n const basePath = determineBasePath()\n\n if (schemaExtraction?.enabled) {\n output.log(`${logSymbols.info} Building with schema extraction enabled`)\n }\n\n let spin: SpinnerInstance\n if (shouldClean) {\n timer.start('cleanOutputFolder')\n spin = spinner('Clean output folder').start()\n await rm(outputDir, {force: true, recursive: true})\n const cleanDuration = timer.end('cleanOutputFolder')\n spin.text = `Clean output folder (${cleanDuration.toFixed(0)}ms)`\n spin.succeed()\n }\n\n spin = spinner(`Build Sanity Studio`).start()\n\n const trace = getCliTelemetry().trace(StudioBuildTrace)\n trace.start()\n\n let autoUpdates\n if (autoUpdatesEnabled && !options.isWorkbenchApp) {\n autoUpdates = {\n cssUrls: autoUpdatesCssUrls,\n imports: autoUpdatesImports,\n vendor: await resolveVendorBuildConfig({cwd: workDir, isApp: false}),\n }\n }\n\n try {\n timer.start('bundleStudio')\n\n const bundle = await buildStaticFiles({\n autoUpdates,\n basePath,\n cwd: workDir,\n exposes,\n isWorkbenchApp: options.isWorkbenchApp,\n minify,\n outputDir,\n reactCompiler,\n schemaExtraction,\n sourceMap,\n vite,\n workbenchAppId: options.workbenchAppId,\n })\n\n trace.log({\n outputSize: bundle.chunks\n .flatMap((chunk) => chunk.modules.flatMap((mod) => mod.renderedLength))\n .reduce((sum, n) => sum + n, 0),\n })\n const buildDuration = timer.end('bundleStudio')\n\n spin.text = `Build Sanity Studio (${buildDuration.toFixed(0)}ms)`\n spin.succeed()\n\n trace.complete()\n if (stats) {\n output.log('\\nLargest module files:')\n output.log(formatModuleSizes(sortModulesBySize(bundle.chunks).slice(0, 15)))\n }\n } catch (error) {\n spin.fail()\n trace.error(error)\n const message = error instanceof Error ? error.message : String(error)\n buildDebug(`Failed to build Sanity Studio`, {error})\n output.error(`Failed to build Sanity Studio: ${message}`, {exit: 1})\n }\n}\n"],"names":["rm","path","styleText","getLocalPackageVersion","getCliTelemetry","isInteractive","confirm","getTimer","logSymbols","select","spinner","parse","semverParse","StudioBuildTrace","formatModuleSizes","sortModulesBySize","buildDebug","buildStaticFiles","checkRequiredDependencies","checkStudioDependencyVersions","getAutoUpdatesCssUrls","getAutoUpdatesImportMap","getStudioEnvironmentVariables","handlePrereleaseVersions","resolveVendorBuildConfig","buildStudio","options","timer","appId","determineBasePath","exposes","isApp","minify","outDir","output","reactCompiler","schemaExtraction","sourceMap","stats","unattendedMode","upgradePackages","vite","workDir","defaultOutputDir","resolve","join","outputDir","installedSanityVersion","autoUpdatesEnabled","autoUpdatesImports","autoUpdatesCssUrls","cleanSanityVersion","version","Error","log","info","checkAppId","installedVisionVersion","cleanVisionVersion","undefined","sanityDependencies","cssFile","name","mismatched","unresolvedPrerelease","compareDependencyVersions","length","versionMismatchWarning","map","mod","pkg","installed","remote","choice","choices","value","default","message","warning","error","exit","packages","res","warn","envVarKeys","Object","keys","key","shouldClean","basePath","enabled","spin","start","force","recursive","cleanDuration","end","text","toFixed","succeed","trace","autoUpdates","isWorkbenchApp","cssUrls","imports","vendor","cwd","bundle","workbenchAppId","outputSize","chunks","flatMap","chunk","modules","renderedLength","reduce","sum","n","buildDuration","complete","slice","fail","String"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../../../src/actions/build/buildStudio.ts"],"sourcesContent":["import {rm} from 'node:fs/promises'\nimport path from 'node:path'\n\nimport {getLocalPackageVersion} from '@sanity/cli-core/package-manager'\nimport {getCliTelemetry} from '@sanity/cli-core/telemetry'\nimport {type CliConfig, type Output, type UserViteConfig} from '@sanity/cli-core/types'\nimport {isInteractive} from '@sanity/cli-core/util'\nimport {getTimer, logSymbols} from '@sanity/cli-core/ux'\nimport {type WorkbenchExposes} from '@sanity/workbench-cli/build'\nimport {parse as semverParse} from 'semver'\n\nimport {StudioBuildTrace} from '../../telemetry/build.telemetry.js'\nimport {\n CompareDependencyVersions,\n CompareDependencyVersionsResult,\n} from '../../util/compareDependencyVersions.js'\nimport {formatModuleSizes, sortModulesBySize} from '../../util/moduleFormatUtils.js'\nimport {buildDebug} from './buildDebug.js'\nimport {buildStaticFiles} from './buildStaticFiles.js'\nimport {checkRequiredDependencies} from './checkRequiredDependencies.js'\nimport {checkStudioDependencyVersions} from './checkStudioDependencyVersions.js'\nimport {type BuildEventListener, type MessageFunc} from './eventListener.js'\nimport {getAutoUpdatesCssUrls, getAutoUpdatesImportMap} from './getAutoUpdatesImportMap.js'\nimport {getStudioEnvironmentVariables} from './getEnvironmentVariables.js'\nimport {handlePrereleaseVersions} from './handlePrereleaseVersions.js'\nimport {resolveVendorBuildConfig} from './resolveVendorBuildConfig.js'\n\nexport interface BuildStudioEventListener extends BuildEventListener {\n onBuildEnd: MessageFunc\n onBuildFail: MessageFunc\n onBuildStart: MessageFunc\n onCleanOutputDirEnd: MessageFunc\n onCleanOutputDirStart: MessageFunc\n onIncompatibleDeclaredStyledComponentsVersionRange: MessageFunc\n onIncompatibleInstalledStyledComponentsVersionRange: MessageFunc\n onInteractiveNonDefaultOutputDir({message}: {message: string}): Promise<{shouldClean: boolean}>\n onInvalidStyledComponentsVersionRange: MessageFunc\n onNoDeclaredStyledComponentsVersion: MessageFunc\n onNoInstalledSanityVersion: MessageFunc\n onNoInstalledStyledComponentsVersion: MessageFunc\n onVersionMismatchInInteractiveAutoUpdate(params: {\n mismatched: CompareDependencyVersions[]\n versionMismatchWarning: string\n }): Promise<{stopBuild: boolean}>\n onVersionMismatchInNonInteractiveAutoUpdate(params: {versionMismatchWarning: string}): void\n}\n\nexport interface BuildOptions {\n appId: string | undefined\n autoUpdatesEnabled: boolean\n checkAppId: () => void\n compareDependencyVersions: (\n packages: {name: string; version: string}[],\n ) => Promise<CompareDependencyVersionsResult>\n determineBasePath: () => string\n eventListener: Partial<BuildStudioEventListener>\n isApp: boolean\n isWorkbenchApp: boolean\n minify: boolean\n outDir: string | undefined\n output: Output\n reactCompiler: boolean | CliConfig['reactCompiler'] | undefined\n schemaExtraction: CliConfig['schemaExtraction']\n sourceMap: boolean\n stats: boolean\n unattendedMode: boolean\n vite: UserViteConfig | undefined\n workDir: string\n\n exposes?: WorkbenchExposes\n\n /** The workbench app's bus identity (`__SANITY_APP_ID__`). */\n workbenchAppId?: string\n}\n\n/**\n * Internal build studio that avoids depending on flags for CLI config.\n * @param options - options for the build\n */\nexport async function buildStudio(options: BuildOptions): Promise<void> {\n buildDebug(`Building studio`)\n\n const timer = getTimer()\n const {\n appId,\n determineBasePath,\n eventListener,\n exposes,\n isApp,\n minify,\n outDir,\n output,\n reactCompiler,\n schemaExtraction,\n sourceMap,\n stats,\n unattendedMode,\n vite,\n workDir,\n } = options\n const defaultOutputDir = path.resolve(path.join(workDir, 'dist'))\n const outputDir = path.resolve(outDir || defaultOutputDir)\n\n await checkStudioDependencyVersions(workDir, output)\n\n // If the check resulted in a dependency install, the CLI command will be re-run,\n // thus we want to exit early\n const {installedSanityVersion} = await checkRequiredDependencies({\n isApp,\n workDir,\n\n ...eventListener,\n })\n\n let autoUpdatesEnabled = options.autoUpdatesEnabled\n\n let autoUpdatesImports = {}\n let autoUpdatesCssUrls: string[] = []\n\n if (autoUpdatesEnabled) {\n // Get the clean version without build metadata: https://semver.org/#spec-item-10\n const cleanSanityVersion = semverParse(installedSanityVersion)?.version\n if (!cleanSanityVersion) {\n throw new Error(`Failed to parse installed Sanity version: ${installedSanityVersion}`)\n }\n\n output.log(`${logSymbols.info} Building with auto-updates enabled`)\n\n // Warn if auto updates enabled but no appId configured\n options.checkAppId()\n\n const installedVisionVersion = await getLocalPackageVersion('@sanity/vision', workDir)\n const cleanVisionVersion = installedVisionVersion\n ? semverParse(installedVisionVersion)?.version\n : undefined\n\n const sanityDependencies = [\n {cssFile: 'index.css', name: 'sanity', version: cleanSanityVersion},\n ...(cleanVisionVersion\n ? [{cssFile: 'index.css', name: '@sanity/vision' as const, version: cleanVisionVersion}]\n : [{name: '@sanity/vision' as const, version: cleanSanityVersion}]),\n ]\n autoUpdatesImports = getAutoUpdatesImportMap(sanityDependencies, {appId})\n\n autoUpdatesCssUrls = getAutoUpdatesCssUrls(sanityDependencies, {appId})\n\n // Check the versions\n const {mismatched, unresolvedPrerelease} =\n await options.compareDependencyVersions(sanityDependencies)\n\n if (unresolvedPrerelease.length > 0) {\n await handlePrereleaseVersions({\n unattendedMode,\n unresolvedPrerelease,\n\n ...eventListener,\n })\n autoUpdatesImports = {}\n autoUpdatesCssUrls = []\n autoUpdatesEnabled = false\n }\n\n if (mismatched.length > 0 && autoUpdatesEnabled) {\n const versionMismatchWarning =\n `The following local package versions are different from the versions currently served at runtime.\\n` +\n `When using auto updates, we recommend that you test locally with the same versions before deploying. \\n\\n` +\n `${mismatched.map((mod) => ` - ${mod.pkg} (local version: ${mod.installed}, runtime version: ${mod.remote})`).join('\\n')}`\n\n const {\n onVersionMismatchInInteractiveAutoUpdate = () => ({stopBuild: true}),\n onVersionMismatchInNonInteractiveAutoUpdate = () => {},\n } = eventListener\n\n // If it is non-interactive or in unattended mode, we don't want to prompt\n if (isInteractive() && !unattendedMode) {\n const {stopBuild} = await onVersionMismatchInInteractiveAutoUpdate({\n mismatched,\n versionMismatchWarning,\n })\n if (stopBuild) return\n } else {\n // if non-interactive or unattended, just show the warning\n onVersionMismatchInNonInteractiveAutoUpdate({versionMismatchWarning})\n }\n }\n }\n\n const envVarKeys = Object.keys(getStudioEnvironmentVariables())\n if (envVarKeys.length > 0) {\n output.log('\\nIncluding the following environment variables as part of the JavaScript bundle:')\n for (const key of envVarKeys) {\n output.log(`- ${key}`)\n }\n output.log('')\n }\n\n let shouldClean = true\n if (outputDir !== defaultOutputDir && !unattendedMode && isInteractive()) {\n const {onInteractiveNonDefaultOutputDir = () => ({shouldClean: true})} = eventListener\n ;({shouldClean} = await onInteractiveNonDefaultOutputDir({\n message: `Do you want to delete the existing directory (${outputDir}) first?`,\n }))\n }\n\n // Determine base path for built studio\n const basePath = determineBasePath()\n\n if (schemaExtraction?.enabled) {\n output.log(`${logSymbols.info} Building with schema extraction enabled`)\n }\n\n if (shouldClean) {\n const {onCleanOutputDirEnd = () => {}, onCleanOutputDirStart = () => {}} = eventListener\n timer.start('cleanOutputFolder')\n onCleanOutputDirStart({message: 'Clean output folder'})\n\n await rm(outputDir, {force: true, recursive: true})\n const cleanDuration = timer.end('cleanOutputFolder')\n\n onCleanOutputDirEnd({\n message: `Clean output folder (${cleanDuration.toFixed(0)}ms)`,\n })\n }\n\n const {onBuildEnd = () => {}, onBuildFail = () => {}, onBuildStart = () => {}} = eventListener\n\n onBuildStart({message: `Build Sanity Studio`})\n\n const trace = getCliTelemetry().trace(StudioBuildTrace)\n trace.start()\n\n let autoUpdates\n if (autoUpdatesEnabled && !options.isWorkbenchApp) {\n autoUpdates = {\n cssUrls: autoUpdatesCssUrls,\n imports: autoUpdatesImports,\n vendor: await resolveVendorBuildConfig({cwd: workDir, isApp: false}),\n }\n }\n\n try {\n timer.start('bundleStudio')\n\n const bundle = await buildStaticFiles({\n autoUpdates,\n basePath,\n cwd: workDir,\n exposes,\n isWorkbenchApp: options.isWorkbenchApp,\n minify,\n outputDir,\n reactCompiler,\n schemaExtraction,\n sourceMap,\n vite,\n workbenchAppId: options.workbenchAppId,\n })\n\n trace.log({\n outputSize: bundle.chunks\n .flatMap((chunk) => chunk.modules.flatMap((mod) => mod.renderedLength))\n .reduce((sum, n) => sum + n, 0),\n })\n const buildDuration = timer.end('bundleStudio')\n\n onBuildEnd({message: `Build Sanity Studio (${buildDuration.toFixed(0)}ms)`})\n\n trace.complete()\n if (stats) {\n output.log('\\nLargest module files:')\n output.log(formatModuleSizes(sortModulesBySize(bundle.chunks).slice(0, 15)))\n }\n } catch (error) {\n trace.error(error)\n const message = error instanceof Error ? error.message : String(error)\n buildDebug(`Failed to build Sanity Studio`, {error})\n onBuildFail({message: `Failed to build Sanity Studio: ${message}`})\n return\n }\n}\n"],"names":["rm","path","getLocalPackageVersion","getCliTelemetry","isInteractive","getTimer","logSymbols","parse","semverParse","StudioBuildTrace","formatModuleSizes","sortModulesBySize","buildDebug","buildStaticFiles","checkRequiredDependencies","checkStudioDependencyVersions","getAutoUpdatesCssUrls","getAutoUpdatesImportMap","getStudioEnvironmentVariables","handlePrereleaseVersions","resolveVendorBuildConfig","buildStudio","options","timer","appId","determineBasePath","eventListener","exposes","isApp","minify","outDir","output","reactCompiler","schemaExtraction","sourceMap","stats","unattendedMode","vite","workDir","defaultOutputDir","resolve","join","outputDir","installedSanityVersion","autoUpdatesEnabled","autoUpdatesImports","autoUpdatesCssUrls","cleanSanityVersion","version","Error","log","info","checkAppId","installedVisionVersion","cleanVisionVersion","undefined","sanityDependencies","cssFile","name","mismatched","unresolvedPrerelease","compareDependencyVersions","length","versionMismatchWarning","map","mod","pkg","installed","remote","onVersionMismatchInInteractiveAutoUpdate","stopBuild","onVersionMismatchInNonInteractiveAutoUpdate","envVarKeys","Object","keys","key","shouldClean","onInteractiveNonDefaultOutputDir","message","basePath","enabled","onCleanOutputDirEnd","onCleanOutputDirStart","start","force","recursive","cleanDuration","end","toFixed","onBuildEnd","onBuildFail","onBuildStart","trace","autoUpdates","isWorkbenchApp","cssUrls","imports","vendor","cwd","bundle","workbenchAppId","outputSize","chunks","flatMap","chunk","modules","renderedLength","reduce","sum","n","buildDuration","complete","slice","error","String"],"mappings":"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"}
|
|
@@ -7,6 +7,7 @@ const defaultStudioManifestProps = {
|
|
|
7
7
|
version: '1.0.0'
|
|
8
8
|
};
|
|
9
9
|
const styledComponentsVersionRange = '^6.1.15';
|
|
10
|
+
const noop = async ()=>{};
|
|
10
11
|
/**
|
|
11
12
|
* Checks that the studio has declared and installed the required dependencies
|
|
12
13
|
* needed by the Sanity modules. While we generally use regular, explicit
|
|
@@ -18,7 +19,7 @@ const styledComponentsVersionRange = '^6.1.15';
|
|
|
18
19
|
*
|
|
19
20
|
* Additionally, returns the version of the 'sanity' dependency from the package.json.
|
|
20
21
|
*/ export async function checkRequiredDependencies(options) {
|
|
21
|
-
const { isApp,
|
|
22
|
+
const { isApp, workDir: studioPath } = options;
|
|
22
23
|
// currently there's no check needed for core apps,
|
|
23
24
|
// but this should be removed once they are more mature
|
|
24
25
|
if (isApp) {
|
|
@@ -26,6 +27,7 @@ const styledComponentsVersionRange = '^6.1.15';
|
|
|
26
27
|
installedSanityVersion: ''
|
|
27
28
|
};
|
|
28
29
|
}
|
|
30
|
+
const { onIncompatibleDeclaredStyledComponentsVersionRange = noop, onIncompatibleInstalledStyledComponentsVersionRange = noop, onInvalidStyledComponentsVersionRange = noop, onNoDeclaredStyledComponentsVersion = noop, onNoInstalledSanityVersion = noop, onNoInstalledStyledComponentsVersion = noop } = options;
|
|
29
31
|
const [studioPackageManifest, installedStyledComponentsVersion, installedSanityVersion] = await Promise.all([
|
|
30
32
|
readPackageJson(path.join(studioPath, 'package.json'), {
|
|
31
33
|
defaults: defaultStudioManifestProps,
|
|
@@ -37,8 +39,8 @@ const styledComponentsVersionRange = '^6.1.15';
|
|
|
37
39
|
const wantedStyledComponentsVersionRange = styledComponentsVersionRange;
|
|
38
40
|
// Retrieve the version of the 'sanity' dependency
|
|
39
41
|
if (!installedSanityVersion) {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
+
onNoInstalledSanityVersion({
|
|
43
|
+
message: 'Failed to read the installed sanity version.'
|
|
42
44
|
});
|
|
43
45
|
return {
|
|
44
46
|
installedSanityVersion: ''
|
|
@@ -49,11 +51,11 @@ const styledComponentsVersionRange = '^6.1.15';
|
|
|
49
51
|
// dependencies before running whatever command was being run
|
|
50
52
|
const declaredStyledComponentsVersion = studioPackageManifest.dependencies?.['styled-components'] || studioPackageManifest?.devDependencies?.['styled-components'];
|
|
51
53
|
if (!declaredStyledComponentsVersion) {
|
|
52
|
-
|
|
54
|
+
onNoDeclaredStyledComponentsVersion({
|
|
55
|
+
message: oneline`
|
|
53
56
|
Declared dependency \`styled-components\` is not installed - run
|
|
54
57
|
\`npm install\`, \`yarn install\` or \`pnpm install\` to install it before re-running this command.
|
|
55
|
-
|
|
56
|
-
exit: 1
|
|
58
|
+
`
|
|
57
59
|
});
|
|
58
60
|
return {
|
|
59
61
|
installedSanityVersion
|
|
@@ -69,11 +71,11 @@ const styledComponentsVersionRange = '^6.1.15';
|
|
|
69
71
|
// Intentional fall-through (variable will be left as null, throwing below)
|
|
70
72
|
}
|
|
71
73
|
if (!minDeclaredStyledComponentsVersion && !isStyledComponentsVersionRangeInCatalog) {
|
|
72
|
-
|
|
74
|
+
onInvalidStyledComponentsVersionRange({
|
|
75
|
+
message: oneline`
|
|
73
76
|
Declared dependency \`styled-components\` has an invalid version range:
|
|
74
77
|
\`${declaredStyledComponentsVersion}\`.
|
|
75
|
-
|
|
76
|
-
exit: 1
|
|
78
|
+
`
|
|
77
79
|
});
|
|
78
80
|
return {
|
|
79
81
|
installedSanityVersion
|
|
@@ -86,19 +88,21 @@ const styledComponentsVersionRange = '^6.1.15';
|
|
|
86
88
|
// to anything is going to be challenging, so only compare "simple" ranges/versions
|
|
87
89
|
// (^x.x.x / ~x.x.x / x.x.x)
|
|
88
90
|
if (!isStyledComponentsVersionRangeInCatalog && isComparableRange(declaredStyledComponentsVersion) && !satisfies(minDeclaredStyledComponentsVersion, wantedStyledComponentsVersionRange)) {
|
|
89
|
-
|
|
91
|
+
onIncompatibleDeclaredStyledComponentsVersionRange({
|
|
92
|
+
message: oneline`
|
|
90
93
|
Declared version of styled-components (${declaredStyledComponentsVersion})
|
|
91
94
|
is not compatible with the version required by sanity (${wantedStyledComponentsVersionRange}).
|
|
92
95
|
This might cause problems!
|
|
93
|
-
`
|
|
96
|
+
`
|
|
97
|
+
});
|
|
94
98
|
}
|
|
95
99
|
// Ensure the studio has _installed_ a version of `styled-components`
|
|
96
100
|
if (!installedStyledComponentsVersion) {
|
|
97
|
-
|
|
101
|
+
onNoInstalledStyledComponentsVersion({
|
|
102
|
+
message: oneline`
|
|
98
103
|
Declared dependency \`styled-components\` is not installed - run
|
|
99
104
|
\`npm install\`, \`yarn install\` or \`pnpm install\` to install it before re-running this command.
|
|
100
|
-
|
|
101
|
-
exit: 1
|
|
105
|
+
`
|
|
102
106
|
});
|
|
103
107
|
return {
|
|
104
108
|
installedSanityVersion
|
|
@@ -107,11 +111,13 @@ const styledComponentsVersionRange = '^6.1.15';
|
|
|
107
111
|
// The studio should have an _installed_ version of `styled-components`, and it should
|
|
108
112
|
// be semver compatible with the version specified in `sanity` peer dependencies.
|
|
109
113
|
if (!satisfies(installedStyledComponentsVersion, wantedStyledComponentsVersionRange)) {
|
|
110
|
-
|
|
114
|
+
onIncompatibleInstalledStyledComponentsVersionRange({
|
|
115
|
+
message: oneline`
|
|
111
116
|
Installed version of styled-components (${installedStyledComponentsVersion})
|
|
112
117
|
is not compatible with the version required by sanity (${wantedStyledComponentsVersionRange}).
|
|
113
118
|
This might cause problems!
|
|
114
|
-
`
|
|
119
|
+
`
|
|
120
|
+
});
|
|
115
121
|
}
|
|
116
122
|
return {
|
|
117
123
|
installedSanityVersion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/actions/build/checkRequiredDependencies.ts"],"sourcesContent":["import path from 'node:path'\n\nimport {getLocalPackageVersion, readPackageJson} from '@sanity/cli-core/package-manager'\nimport {type Output, type PackageJson} from '@sanity/cli-core/types'\nimport {oneline} from 'oneline'\nimport {minVersion, satisfies, type SemVer} from 'semver'\n\nconst defaultStudioManifestProps: Partial<PackageJson> = {\n name: 'studio',\n version: '1.0.0',\n}\n\ninterface CheckResult {\n installedSanityVersion: string\n}\n\ninterface CheckRequiredDependenciesOptions {\n isApp: boolean\n output: Output\n workDir: string\n}\n\nconst styledComponentsVersionRange = '^6.1.15'\n\n/**\n * Checks that the studio has declared and installed the required dependencies\n * needed by the Sanity modules. While we generally use regular, explicit\n * dependencies in modules, there are certain dependencies that are better\n * served being peer dependencies, such as react and styled-components.\n *\n * If these dependencies are not installed/declared, we report an error\n * and instruct the user to install them manually.\n *\n * Additionally, returns the version of the 'sanity' dependency from the package.json.\n */\nexport async function checkRequiredDependencies(\n options: CheckRequiredDependenciesOptions,\n): Promise<CheckResult> {\n const {isApp, output, workDir: studioPath} = options\n // currently there's no check needed for core apps,\n // but this should be removed once they are more mature\n if (isApp) {\n return {installedSanityVersion: ''}\n }\n\n const [studioPackageManifest, installedStyledComponentsVersion, installedSanityVersion] =\n await Promise.all([\n readPackageJson(path.join(studioPath, 'package.json'), {\n defaults: defaultStudioManifestProps,\n skipSchemaValidation: true,\n }),\n getLocalPackageVersion('styled-components', studioPath),\n getLocalPackageVersion('sanity', studioPath),\n ])\n\n const wantedStyledComponentsVersionRange = styledComponentsVersionRange\n\n // Retrieve the version of the 'sanity' dependency\n if (!installedSanityVersion) {\n output.error('Failed to read the installed sanity version.', {exit: 1})\n return {installedSanityVersion: ''}\n }\n\n // The studio _must_ now declare `styled-components` as a dependency. If it's not there,\n // we'll want to automatically _add it_ to the manifest and tell the user to reinstall\n // dependencies before running whatever command was being run\n const declaredStyledComponentsVersion =\n studioPackageManifest.dependencies?.['styled-components'] ||\n studioPackageManifest?.devDependencies?.['styled-components']\n\n if (!declaredStyledComponentsVersion) {\n output.error(\n oneline`\n Declared dependency \\`styled-components\\` is not installed - run\n \\`npm install\\`, \\`yarn install\\` or \\`pnpm install\\` to install it before re-running this command.\n `,\n {exit: 1},\n )\n return {installedSanityVersion}\n }\n\n // We ignore catalog identifiers since we check the actual version anyway\n const isStyledComponentsVersionRangeInCatalog =\n declaredStyledComponentsVersion.startsWith('catalog:')\n // Theoretically the version specified in package.json could be incorrect, eg `foo`\n let minDeclaredStyledComponentsVersion: SemVer | null = null\n try {\n minDeclaredStyledComponentsVersion = minVersion(declaredStyledComponentsVersion)\n } catch {\n // Intentional fall-through (variable will be left as null, throwing below)\n }\n\n if (!minDeclaredStyledComponentsVersion && !isStyledComponentsVersionRangeInCatalog) {\n output.error(\n oneline`\n Declared dependency \\`styled-components\\` has an invalid version range:\n \\`${declaredStyledComponentsVersion}\\`.\n `,\n {exit: 1},\n )\n return {installedSanityVersion}\n }\n\n // The declared version should be semver-compatible with the version specified as a\n // peer dependency in `sanity`. If not, we should tell the user to change it.\n //\n // Exception: Ranges are hard to compare. `>=5.0.0 && <=5.3.2 || ^6`... Comparing this\n // to anything is going to be challenging, so only compare \"simple\" ranges/versions\n // (^x.x.x / ~x.x.x / x.x.x)\n if (\n !isStyledComponentsVersionRangeInCatalog &&\n isComparableRange(declaredStyledComponentsVersion) &&\n !satisfies(minDeclaredStyledComponentsVersion!, wantedStyledComponentsVersionRange)\n ) {\n output.warn(oneline`\n Declared version of styled-components (${declaredStyledComponentsVersion})\n is not compatible with the version required by sanity (${wantedStyledComponentsVersionRange}).\n This might cause problems!\n `)\n }\n\n // Ensure the studio has _installed_ a version of `styled-components`\n if (!installedStyledComponentsVersion) {\n output.error(\n oneline`\n Declared dependency \\`styled-components\\` is not installed - run\n \\`npm install\\`, \\`yarn install\\` or \\`pnpm install\\` to install it before re-running this command.\n `,\n {exit: 1},\n )\n return {installedSanityVersion}\n }\n\n // The studio should have an _installed_ version of `styled-components`, and it should\n // be semver compatible with the version specified in `sanity` peer dependencies.\n if (!satisfies(installedStyledComponentsVersion, wantedStyledComponentsVersionRange)) {\n output.warn(oneline`\n Installed version of styled-components (${installedStyledComponentsVersion})\n is not compatible with the version required by sanity (${wantedStyledComponentsVersionRange}).\n This might cause problems!\n `)\n }\n\n return {installedSanityVersion}\n}\n\nfunction isComparableRange(range: string): boolean {\n return /^[\\^~]?\\d+(\\.\\d+)?(\\.\\d+)?$/.test(range)\n}\n"],"names":["path","getLocalPackageVersion","readPackageJson","oneline","minVersion","satisfies","defaultStudioManifestProps","name","version","styledComponentsVersionRange","checkRequiredDependencies","options","isApp","output","workDir","studioPath","installedSanityVersion","studioPackageManifest","installedStyledComponentsVersion","Promise","all","join","defaults","skipSchemaValidation","wantedStyledComponentsVersionRange","error","exit","declaredStyledComponentsVersion","dependencies","devDependencies","isStyledComponentsVersionRangeInCatalog","startsWith","minDeclaredStyledComponentsVersion","isComparableRange","warn","range","test"],"mappings":"AAAA,OAAOA,UAAU,YAAW;AAE5B,SAAQC,sBAAsB,EAAEC,eAAe,QAAO,mCAAkC;AAExF,SAAQC,OAAO,QAAO,UAAS;AAC/B,SAAQC,UAAU,EAAEC,SAAS,QAAoB,SAAQ;AAEzD,MAAMC,6BAAmD;IACvDC,MAAM;IACNC,SAAS;AACX;AAYA,MAAMC,+BAA+B;AAErC;;;;;;;;;;CAUC,GACD,OAAO,eAAeC,0BACpBC,OAAyC;IAEzC,MAAM,EAACC,KAAK,EAAEC,MAAM,EAAEC,SAASC,UAAU,EAAC,GAAGJ;IAC7C,mDAAmD;IACnD,uDAAuD;IACvD,IAAIC,OAAO;QACT,OAAO;YAACI,wBAAwB;QAAE;IACpC;IAEA,MAAM,CAACC,uBAAuBC,kCAAkCF,uBAAuB,GACrF,MAAMG,QAAQC,GAAG,CAAC;QAChBlB,gBAAgBF,KAAKqB,IAAI,CAACN,YAAY,iBAAiB;YACrDO,UAAUhB;YACViB,sBAAsB;QACxB;QACAtB,uBAAuB,qBAAqBc;QAC5Cd,uBAAuB,UAAUc;KAClC;IAEH,MAAMS,qCAAqCf;IAE3C,kDAAkD;IAClD,IAAI,CAACO,wBAAwB;QAC3BH,OAAOY,KAAK,CAAC,gDAAgD;YAACC,MAAM;QAAC;QACrE,OAAO;YAACV,wBAAwB;QAAE;IACpC;IAEA,wFAAwF;IACxF,sFAAsF;IACtF,6DAA6D;IAC7D,MAAMW,kCACJV,sBAAsBW,YAAY,EAAE,CAAC,oBAAoB,IACzDX,uBAAuBY,iBAAiB,CAAC,oBAAoB;IAE/D,IAAI,CAACF,iCAAiC;QACpCd,OAAOY,KAAK,CACVtB,OAAO,CAAC;;;IAGV,CAAC,EACC;YAACuB,MAAM;QAAC;QAEV,OAAO;YAACV;QAAsB;IAChC;IAEA,yEAAyE;IACzE,MAAMc,0CACJH,gCAAgCI,UAAU,CAAC;IAC7C,mFAAmF;IACnF,IAAIC,qCAAoD;IACxD,IAAI;QACFA,qCAAqC5B,WAAWuB;IAClD,EAAE,OAAM;IACN,2EAA2E;IAC7E;IAEA,IAAI,CAACK,sCAAsC,CAACF,yCAAyC;QACnFjB,OAAOY,KAAK,CACVtB,OAAO,CAAC;;QAEN,EAAEwB,gCAAgC;IACtC,CAAC,EACC;YAACD,MAAM;QAAC;QAEV,OAAO;YAACV;QAAsB;IAChC;IAEA,mFAAmF;IACnF,6EAA6E;IAC7E,EAAE;IACF,sFAAsF;IACtF,mFAAmF;IACnF,4BAA4B;IAC5B,IACE,CAACc,2CACDG,kBAAkBN,oCAClB,CAACtB,UAAU2B,oCAAqCR,qCAChD;QACAX,OAAOqB,IAAI,CAAC/B,OAAO,CAAC;6CACqB,EAAEwB,gCAAgC;6DAClB,EAAEH,mCAAmC;;IAE9F,CAAC;IACH;IAEA,qEAAqE;IACrE,IAAI,CAACN,kCAAkC;QACrCL,OAAOY,KAAK,CACVtB,OAAO,CAAC;;;IAGV,CAAC,EACC;YAACuB,MAAM;QAAC;QAEV,OAAO;YAACV;QAAsB;IAChC;IAEA,sFAAsF;IACtF,iFAAiF;IACjF,IAAI,CAACX,UAAUa,kCAAkCM,qCAAqC;QACpFX,OAAOqB,IAAI,CAAC/B,OAAO,CAAC;8CACsB,EAAEe,iCAAiC;6DACpB,EAAEM,mCAAmC;;IAE9F,CAAC;IACH;IAEA,OAAO;QAACR;IAAsB;AAChC;AAEA,SAASiB,kBAAkBE,KAAa;IACtC,OAAO,8BAA8BC,IAAI,CAACD;AAC5C"}
|
|
1
|
+
{"version":3,"sources":["../../../src/actions/build/checkRequiredDependencies.ts"],"sourcesContent":["import path from 'node:path'\n\nimport {getLocalPackageVersion, readPackageJson} from '@sanity/cli-core/package-manager'\nimport {type PackageJson} from '@sanity/cli-core/types'\nimport {oneline} from 'oneline'\nimport {minVersion, satisfies, type SemVer} from 'semver'\n\nimport {type BuildStudioEventListener} from './buildStudio'\n\nconst defaultStudioManifestProps: Partial<PackageJson> = {\n name: 'studio',\n version: '1.0.0',\n}\n\ninterface CheckResult {\n installedSanityVersion: string\n}\n\nexport interface CheckRequiredDependenciesOptions {\n isApp: boolean\n workDir: string\n\n onIncompatibleDeclaredStyledComponentsVersionRange?: BuildStudioEventListener['onIncompatibleDeclaredStyledComponentsVersionRange']\n onIncompatibleInstalledStyledComponentsVersionRange?: BuildStudioEventListener['onIncompatibleInstalledStyledComponentsVersionRange']\n onInvalidStyledComponentsVersionRange?: BuildStudioEventListener['onInvalidStyledComponentsVersionRange']\n onNoDeclaredStyledComponentsVersion?: BuildStudioEventListener['onNoDeclaredStyledComponentsVersion']\n onNoInstalledSanityVersion?: BuildStudioEventListener['onNoInstalledSanityVersion']\n onNoInstalledStyledComponentsVersion?: BuildStudioEventListener['onNoInstalledStyledComponentsVersion']\n}\n\nconst styledComponentsVersionRange = '^6.1.15'\n\nconst noop = async () => {}\n\n/**\n * Checks that the studio has declared and installed the required dependencies\n * needed by the Sanity modules. While we generally use regular, explicit\n * dependencies in modules, there are certain dependencies that are better\n * served being peer dependencies, such as react and styled-components.\n *\n * If these dependencies are not installed/declared, we report an error\n * and instruct the user to install them manually.\n *\n * Additionally, returns the version of the 'sanity' dependency from the package.json.\n */\nexport async function checkRequiredDependencies(\n options: CheckRequiredDependenciesOptions,\n): Promise<CheckResult> {\n const {isApp, workDir: studioPath} = options\n // currently there's no check needed for core apps,\n // but this should be removed once they are more mature\n if (isApp) {\n return {installedSanityVersion: ''}\n }\n\n const {\n onIncompatibleDeclaredStyledComponentsVersionRange = noop,\n onIncompatibleInstalledStyledComponentsVersionRange = noop,\n onInvalidStyledComponentsVersionRange = noop,\n onNoDeclaredStyledComponentsVersion = noop,\n onNoInstalledSanityVersion = noop,\n onNoInstalledStyledComponentsVersion = noop,\n } = options\n\n const [studioPackageManifest, installedStyledComponentsVersion, installedSanityVersion] =\n await Promise.all([\n readPackageJson(path.join(studioPath, 'package.json'), {\n defaults: defaultStudioManifestProps,\n skipSchemaValidation: true,\n }),\n getLocalPackageVersion('styled-components', studioPath),\n getLocalPackageVersion('sanity', studioPath),\n ])\n\n const wantedStyledComponentsVersionRange = styledComponentsVersionRange\n\n // Retrieve the version of the 'sanity' dependency\n if (!installedSanityVersion) {\n onNoInstalledSanityVersion({message: 'Failed to read the installed sanity version.'})\n return {installedSanityVersion: ''}\n }\n\n // The studio _must_ now declare `styled-components` as a dependency. If it's not there,\n // we'll want to automatically _add it_ to the manifest and tell the user to reinstall\n // dependencies before running whatever command was being run\n const declaredStyledComponentsVersion =\n studioPackageManifest.dependencies?.['styled-components'] ||\n studioPackageManifest?.devDependencies?.['styled-components']\n\n if (!declaredStyledComponentsVersion) {\n onNoDeclaredStyledComponentsVersion({\n message: oneline`\n Declared dependency \\`styled-components\\` is not installed - run\n \\`npm install\\`, \\`yarn install\\` or \\`pnpm install\\` to install it before re-running this command.\n `,\n })\n return {installedSanityVersion}\n }\n\n // We ignore catalog identifiers since we check the actual version anyway\n const isStyledComponentsVersionRangeInCatalog =\n declaredStyledComponentsVersion.startsWith('catalog:')\n // Theoretically the version specified in package.json could be incorrect, eg `foo`\n let minDeclaredStyledComponentsVersion: SemVer | null = null\n try {\n minDeclaredStyledComponentsVersion = minVersion(declaredStyledComponentsVersion)\n } catch {\n // Intentional fall-through (variable will be left as null, throwing below)\n }\n\n if (!minDeclaredStyledComponentsVersion && !isStyledComponentsVersionRangeInCatalog) {\n onInvalidStyledComponentsVersionRange({\n message: oneline`\n Declared dependency \\`styled-components\\` has an invalid version range:\n \\`${declaredStyledComponentsVersion}\\`.\n `,\n })\n return {installedSanityVersion}\n }\n\n // The declared version should be semver-compatible with the version specified as a\n // peer dependency in `sanity`. If not, we should tell the user to change it.\n //\n // Exception: Ranges are hard to compare. `>=5.0.0 && <=5.3.2 || ^6`... Comparing this\n // to anything is going to be challenging, so only compare \"simple\" ranges/versions\n // (^x.x.x / ~x.x.x / x.x.x)\n if (\n !isStyledComponentsVersionRangeInCatalog &&\n isComparableRange(declaredStyledComponentsVersion) &&\n !satisfies(minDeclaredStyledComponentsVersion!, wantedStyledComponentsVersionRange)\n ) {\n onIncompatibleDeclaredStyledComponentsVersionRange({\n message: oneline`\n Declared version of styled-components (${declaredStyledComponentsVersion})\n is not compatible with the version required by sanity (${wantedStyledComponentsVersionRange}).\n This might cause problems!\n `,\n })\n }\n\n // Ensure the studio has _installed_ a version of `styled-components`\n if (!installedStyledComponentsVersion) {\n onNoInstalledStyledComponentsVersion({\n message: oneline`\n Declared dependency \\`styled-components\\` is not installed - run\n \\`npm install\\`, \\`yarn install\\` or \\`pnpm install\\` to install it before re-running this command.\n `,\n })\n return {installedSanityVersion}\n }\n\n // The studio should have an _installed_ version of `styled-components`, and it should\n // be semver compatible with the version specified in `sanity` peer dependencies.\n if (!satisfies(installedStyledComponentsVersion, wantedStyledComponentsVersionRange)) {\n onIncompatibleInstalledStyledComponentsVersionRange({\n message: oneline`\n Installed version of styled-components (${installedStyledComponentsVersion})\n is not compatible with the version required by sanity (${wantedStyledComponentsVersionRange}).\n This might cause problems!\n `,\n })\n }\n\n return {installedSanityVersion}\n}\n\nfunction isComparableRange(range: string): boolean {\n return /^[\\^~]?\\d+(\\.\\d+)?(\\.\\d+)?$/.test(range)\n}\n"],"names":["path","getLocalPackageVersion","readPackageJson","oneline","minVersion","satisfies","defaultStudioManifestProps","name","version","styledComponentsVersionRange","noop","checkRequiredDependencies","options","isApp","workDir","studioPath","installedSanityVersion","onIncompatibleDeclaredStyledComponentsVersionRange","onIncompatibleInstalledStyledComponentsVersionRange","onInvalidStyledComponentsVersionRange","onNoDeclaredStyledComponentsVersion","onNoInstalledSanityVersion","onNoInstalledStyledComponentsVersion","studioPackageManifest","installedStyledComponentsVersion","Promise","all","join","defaults","skipSchemaValidation","wantedStyledComponentsVersionRange","message","declaredStyledComponentsVersion","dependencies","devDependencies","isStyledComponentsVersionRangeInCatalog","startsWith","minDeclaredStyledComponentsVersion","isComparableRange","range","test"],"mappings":"AAAA,OAAOA,UAAU,YAAW;AAE5B,SAAQC,sBAAsB,EAAEC,eAAe,QAAO,mCAAkC;AAExF,SAAQC,OAAO,QAAO,UAAS;AAC/B,SAAQC,UAAU,EAAEC,SAAS,QAAoB,SAAQ;AAIzD,MAAMC,6BAAmD;IACvDC,MAAM;IACNC,SAAS;AACX;AAkBA,MAAMC,+BAA+B;AAErC,MAAMC,OAAO,WAAa;AAE1B;;;;;;;;;;CAUC,GACD,OAAO,eAAeC,0BACpBC,OAAyC;IAEzC,MAAM,EAACC,KAAK,EAAEC,SAASC,UAAU,EAAC,GAAGH;IACrC,mDAAmD;IACnD,uDAAuD;IACvD,IAAIC,OAAO;QACT,OAAO;YAACG,wBAAwB;QAAE;IACpC;IAEA,MAAM,EACJC,qDAAqDP,IAAI,EACzDQ,sDAAsDR,IAAI,EAC1DS,wCAAwCT,IAAI,EAC5CU,sCAAsCV,IAAI,EAC1CW,6BAA6BX,IAAI,EACjCY,uCAAuCZ,IAAI,EAC5C,GAAGE;IAEJ,MAAM,CAACW,uBAAuBC,kCAAkCR,uBAAuB,GACrF,MAAMS,QAAQC,GAAG,CAAC;QAChBxB,gBAAgBF,KAAK2B,IAAI,CAACZ,YAAY,iBAAiB;YACrDa,UAAUtB;YACVuB,sBAAsB;QACxB;QACA5B,uBAAuB,qBAAqBc;QAC5Cd,uBAAuB,UAAUc;KAClC;IAEH,MAAMe,qCAAqCrB;IAE3C,kDAAkD;IAClD,IAAI,CAACO,wBAAwB;QAC3BK,2BAA2B;YAACU,SAAS;QAA8C;QACnF,OAAO;YAACf,wBAAwB;QAAE;IACpC;IAEA,wFAAwF;IACxF,sFAAsF;IACtF,6DAA6D;IAC7D,MAAMgB,kCACJT,sBAAsBU,YAAY,EAAE,CAAC,oBAAoB,IACzDV,uBAAuBW,iBAAiB,CAAC,oBAAoB;IAE/D,IAAI,CAACF,iCAAiC;QACpCZ,oCAAoC;YAClCW,SAAS5B,OAAO,CAAC;;;IAGnB,CAAC;QACD;QACA,OAAO;YAACa;QAAsB;IAChC;IAEA,yEAAyE;IACzE,MAAMmB,0CACJH,gCAAgCI,UAAU,CAAC;IAC7C,mFAAmF;IACnF,IAAIC,qCAAoD;IACxD,IAAI;QACFA,qCAAqCjC,WAAW4B;IAClD,EAAE,OAAM;IACN,2EAA2E;IAC7E;IAEA,IAAI,CAACK,sCAAsC,CAACF,yCAAyC;QACnFhB,sCAAsC;YACpCY,SAAS5B,OAAO,CAAC;;QAEf,EAAE6B,gCAAgC;IACtC,CAAC;QACD;QACA,OAAO;YAAChB;QAAsB;IAChC;IAEA,mFAAmF;IACnF,6EAA6E;IAC7E,EAAE;IACF,sFAAsF;IACtF,mFAAmF;IACnF,4BAA4B;IAC5B,IACE,CAACmB,2CACDG,kBAAkBN,oCAClB,CAAC3B,UAAUgC,oCAAqCP,qCAChD;QACAb,mDAAmD;YACjDc,SAAS5B,OAAO,CAAC;6CACsB,EAAE6B,gCAAgC;6DAClB,EAAEF,mCAAmC;;IAE9F,CAAC;QACD;IACF;IAEA,qEAAqE;IACrE,IAAI,CAACN,kCAAkC;QACrCF,qCAAqC;YACnCS,SAAS5B,OAAO,CAAC;;;IAGnB,CAAC;QACD;QACA,OAAO;YAACa;QAAsB;IAChC;IAEA,sFAAsF;IACtF,iFAAiF;IACjF,IAAI,CAACX,UAAUmB,kCAAkCM,qCAAqC;QACpFZ,oDAAoD;YAClDa,SAAS5B,OAAO,CAAC;8CACuB,EAAEqB,iCAAiC;6DACpB,EAAEM,mCAAmC;;IAE9F,CAAC;QACD;IACF;IAEA,OAAO;QAACd;IAAsB;AAChC;AAEA,SAASsB,kBAAkBC,KAAa;IACtC,OAAO,8BAA8BC,IAAI,CAACD;AAC5C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/actions/build/eventListener.ts"],"sourcesContent":["export type MessageFunc = ({message}: {message: string}) => void\n\nexport interface BuildEventListener {\n onPreReleaseInInteractiveAutoUpdate(params: {prereleaseMessage: string}): Promise<void>\n onPreReleaseInNonInteractiveAutoUpdate: MessageFunc\n}\n"],"names":[],"mappings":"AAEA,WAGC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { styleText } from 'node:util';
|
|
2
1
|
import { isInteractive } from '@sanity/cli-core/util';
|
|
3
|
-
|
|
2
|
+
const noop = async ()=>{};
|
|
4
3
|
/**
|
|
5
4
|
* Handle prerelease versions that cannot be resolved by the auto-updates CDN.
|
|
6
5
|
*
|
|
@@ -8,37 +7,19 @@ import { select } from '@sanity/cli-core/ux';
|
|
|
8
7
|
* prompts the user to either disable auto-updates for this build or cancel.
|
|
9
8
|
*
|
|
10
9
|
* Does not return if the build should be cancelled (exits via `output.error`).
|
|
11
|
-
*/ export async function handlePrereleaseVersions({
|
|
10
|
+
*/ export async function handlePrereleaseVersions({ onPreReleaseInInteractiveAutoUpdate, onPreReleaseInNonInteractiveAutoUpdate, unattendedMode, unresolvedPrerelease }) {
|
|
11
|
+
onPreReleaseInInteractiveAutoUpdate ??= noop;
|
|
12
|
+
onPreReleaseInNonInteractiveAutoUpdate ??= noop;
|
|
12
13
|
const prereleaseMessage = `The following packages are using prerelease versions not yet available on the auto-updates CDN:\n\n` + `${unresolvedPrerelease.map((mod)=>` - ${mod.pkg} (${mod.version})`).join('\n')}\n\n` + `Auto-updates cannot be used with prerelease versions. To re-enable auto-updates later, ` + `switch to a non-prerelease version locally and deploy again.`;
|
|
13
14
|
if (unattendedMode || !isInteractive()) {
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
onPreReleaseInNonInteractiveAutoUpdate({
|
|
16
|
+
message: `${prereleaseMessage}\n\n` + `Cannot build with auto-updates in unattended mode when using prerelease versions. ` + `Either switch to a non-prerelease version, or use --no-auto-updates to build without auto-updates.`
|
|
16
17
|
});
|
|
17
|
-
// output.error with exit: 1 throws, but TypeScript doesn't know that
|
|
18
18
|
return;
|
|
19
19
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
{
|
|
23
|
-
name: 'Disable auto-updates for this build and continue',
|
|
24
|
-
value: 'disable-auto-updates'
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
name: 'Cancel build',
|
|
28
|
-
value: 'cancel'
|
|
29
|
-
}
|
|
30
|
-
],
|
|
31
|
-
default: 'disable-auto-updates',
|
|
32
|
-
message: styleText('yellow', prereleaseMessage)
|
|
20
|
+
await onPreReleaseInInteractiveAutoUpdate({
|
|
21
|
+
prereleaseMessage
|
|
33
22
|
});
|
|
34
|
-
if (choice === 'cancel') {
|
|
35
|
-
output.error('Declined to continue with build', {
|
|
36
|
-
exit: 1
|
|
37
|
-
});
|
|
38
|
-
// output.error with exit: 1 throws, but TypeScript doesn't know that
|
|
39
|
-
return;
|
|
40
|
-
}
|
|
41
|
-
output.warn('Auto-updates disabled for this build');
|
|
42
23
|
}
|
|
43
24
|
|
|
44
25
|
//# sourceMappingURL=handlePrereleaseVersions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/actions/build/handlePrereleaseVersions.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"sources":["../../../src/actions/build/handlePrereleaseVersions.ts"],"sourcesContent":["import {isInteractive} from '@sanity/cli-core/util'\n\nimport {type UnresolvedPrerelease} from '../../util/compareDependencyVersions.js'\nimport {type BuildStudioEventListener} from './buildStudio.js'\n\nconst noop = async () => {}\n\n/**\n * Handle prerelease versions that cannot be resolved by the auto-updates CDN.\n *\n * In unattended or non-interactive mode, exits with an error. In interactive mode,\n * prompts the user to either disable auto-updates for this build or cancel.\n *\n * Does not return if the build should be cancelled (exits via `output.error`).\n */\nexport async function handlePrereleaseVersions({\n onPreReleaseInInteractiveAutoUpdate,\n onPreReleaseInNonInteractiveAutoUpdate,\n unattendedMode,\n unresolvedPrerelease,\n}: {\n onPreReleaseInInteractiveAutoUpdate?: BuildStudioEventListener['onPreReleaseInInteractiveAutoUpdate']\n onPreReleaseInNonInteractiveAutoUpdate?: BuildStudioEventListener['onPreReleaseInNonInteractiveAutoUpdate']\n unattendedMode: boolean\n unresolvedPrerelease: UnresolvedPrerelease[]\n}): Promise<void> {\n onPreReleaseInInteractiveAutoUpdate ??= noop\n onPreReleaseInNonInteractiveAutoUpdate ??= noop\n\n const prereleaseMessage =\n `The following packages are using prerelease versions not yet available on the auto-updates CDN:\\n\\n` +\n `${unresolvedPrerelease.map((mod) => ` - ${mod.pkg} (${mod.version})`).join('\\n')}\\n\\n` +\n `Auto-updates cannot be used with prerelease versions. To re-enable auto-updates later, ` +\n `switch to a non-prerelease version locally and deploy again.`\n\n if (unattendedMode || !isInteractive()) {\n onPreReleaseInNonInteractiveAutoUpdate({\n message:\n `${prereleaseMessage}\\n\\n` +\n `Cannot build with auto-updates in unattended mode when using prerelease versions. ` +\n `Either switch to a non-prerelease version, or use --no-auto-updates to build without auto-updates.`,\n })\n return\n }\n\n await onPreReleaseInInteractiveAutoUpdate({prereleaseMessage})\n}\n"],"names":["isInteractive","noop","handlePrereleaseVersions","onPreReleaseInInteractiveAutoUpdate","onPreReleaseInNonInteractiveAutoUpdate","unattendedMode","unresolvedPrerelease","prereleaseMessage","map","mod","pkg","version","join","message"],"mappings":"AAAA,SAAQA,aAAa,QAAO,wBAAuB;AAKnD,MAAMC,OAAO,WAAa;AAE1B;;;;;;;CAOC,GACD,OAAO,eAAeC,yBAAyB,EAC7CC,mCAAmC,EACnCC,sCAAsC,EACtCC,cAAc,EACdC,oBAAoB,EAMrB;IACCH,wCAAwCF;IACxCG,2CAA2CH;IAE3C,MAAMM,oBACJ,CAAC,mGAAmG,CAAC,GACrG,GAAGD,qBAAqBE,GAAG,CAAC,CAACC,MAAQ,CAAC,GAAG,EAAEA,IAAIC,GAAG,CAAC,EAAE,EAAED,IAAIE,OAAO,CAAC,CAAC,CAAC,EAAEC,IAAI,CAAC,MAAM,IAAI,CAAC,GACvF,CAAC,uFAAuF,CAAC,GACzF,CAAC,4DAA4D,CAAC;IAEhE,IAAIP,kBAAkB,CAACL,iBAAiB;QACtCI,uCAAuC;YACrCS,SACE,GAAGN,kBAAkB,IAAI,CAAC,GAC1B,CAAC,kFAAkF,CAAC,GACpF,CAAC,kGAAkG,CAAC;QACxG;QACA;IACF;IAEA,MAAMJ,oCAAoC;QAACI;IAAiB;AAC9D"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/cli-build",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Internal Sanity package for building studios and apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"vite": "^8.1.5",
|
|
68
68
|
"zod": "^4.4.3",
|
|
69
69
|
"@sanity/cli-core": "^2.5.1",
|
|
70
|
-
"@sanity/workbench-cli": "^1.
|
|
70
|
+
"@sanity/workbench-cli": "^1.7.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@eslint/compat": "^2.1.0",
|