mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-10 11:35:52 +01:00
29 lines
866 B
JavaScript
29 lines
866 B
JavaScript
const { execSync } = require("child_process");
|
|
|
|
const excalidrawDir = `${__dirname}/../packages/excalidraw`;
|
|
const excalidrawPackage = `${excalidrawDir}/package.json`;
|
|
const pkg = require(excalidrawPackage);
|
|
|
|
const publish = () => {
|
|
try {
|
|
console.info("Installing the dependencies in root folder...");
|
|
execSync(`yarn --frozen-lockfile`);
|
|
console.info("Installing the dependencies in excalidraw directory...");
|
|
execSync(`yarn --frozen-lockfile`, { cwd: excalidrawDir });
|
|
console.info("Building ESM Package...");
|
|
execSync(`yarn run build:esm`, { cwd: excalidrawDir });
|
|
console.info("Publishing the package...");
|
|
execSync(`yarn --cwd ${excalidrawDir} publish`);
|
|
} catch (error) {
|
|
console.error(error);
|
|
process.exit(1);
|
|
}
|
|
};
|
|
|
|
const release = () => {
|
|
publish();
|
|
console.info(`Published ${pkg.version}!`);
|
|
};
|
|
|
|
release();
|