57 lines
1.8 KiB
TypeScript
Executable File
57 lines
1.8 KiB
TypeScript
Executable File
import { mkdir, rm } from 'fs/promises';
|
|
import { join, resolve } from 'path';
|
|
import { group, gitShallowClone, run, writeJsonFile } from '../lib';
|
|
|
|
const selfPath = __dirname;
|
|
const rootPath = join(selfPath, '..', '..');
|
|
const dependenciesPath = join(rootPath, 'dependencies');
|
|
const vscodePath = resolve(dependenciesPath, 'vscode');
|
|
const monacoEditorPackageJsonPath = resolve(rootPath, 'package.json');
|
|
|
|
async function prepareMonacoEditorCoreReleaseStable() {
|
|
const monacoEditorPackageJson = require(monacoEditorPackageJsonPath) as {
|
|
version: string;
|
|
vscodeRef: string;
|
|
};
|
|
await prepareMonacoEditorCoreRelease(
|
|
monacoEditorPackageJson.version,
|
|
monacoEditorPackageJson.vscodeRef
|
|
);
|
|
|
|
// npm package is now in dependencies/vscode/out-monaco-editor-core, ready to be published
|
|
}
|
|
|
|
async function prepareMonacoEditorCoreRelease(version: string, vscodeRef: string) {
|
|
await mkdir(vscodePath, { recursive: true });
|
|
|
|
await rm(dependenciesPath, { force: true, recursive: true });
|
|
|
|
await group('Checkout vscode', async () => {
|
|
await gitShallowClone(vscodePath, 'https://github.com/microsoft/vscode.git', vscodeRef);
|
|
});
|
|
await group('Checkout vscode-loc', async () => {
|
|
await gitShallowClone(
|
|
// Must be a sibling to the vscode repository
|
|
'dependencies/vscode-loc',
|
|
'https://github.com/microsoft/vscode-loc.git',
|
|
'main'
|
|
);
|
|
});
|
|
|
|
await group('Set Version', async () => {
|
|
const monacoEditorCorePackageJsonSourcePath = resolve(
|
|
vscodePath,
|
|
'./build/monaco/package.json'
|
|
);
|
|
const packageJson = require(monacoEditorCorePackageJsonSourcePath) as { version: string };
|
|
packageJson.version = version;
|
|
await writeJsonFile(monacoEditorPackageJsonPath, packageJson);
|
|
});
|
|
|
|
await group('Building & Testing', async () => {
|
|
await run(resolve(selfPath, './monaco-editor-core.sh'), { cwd: vscodePath });
|
|
});
|
|
}
|
|
|
|
prepareMonacoEditorCoreReleaseStable();
|