mirror of
https://github.com/facebook/lexical.git
synced 2025-08-06 16:39:33 +08:00
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const fs = require('fs-extra');
|
|
const glob = require('glob');
|
|
const path = require('node:path');
|
|
const {packagesManager} = require('../shared/packagesManager');
|
|
|
|
/**
|
|
* Cleans the npm dir from the package and constructs it with:
|
|
* - All the files from the pkg dist (recursively)
|
|
* - All of the *.flow files from the pkg flow (not recursively)
|
|
* - The package.json and README.md from pkg
|
|
* - The LICENSE file from the monorepo root
|
|
*
|
|
* @param {import('../shared/PackageMetadata').PackageMetadata} pkg the directory name of the package to process (e.g. 'lexical-rich-text')
|
|
*/
|
|
function preparePackage(pkg) {
|
|
console.log(
|
|
`Preparing packages/${pkg.getDirectoryName()} for release as ${pkg.getNpmName()}`,
|
|
);
|
|
fs.removeSync(pkg.resolve('npm'));
|
|
fs.ensureDirSync(pkg.resolve('npm'));
|
|
fs.copySync(pkg.resolve('dist'), pkg.resolve('npm'));
|
|
const flowSources = glob.sync(pkg.resolve('flow', '*.flow'), {
|
|
windowsPathsNoEscape: true,
|
|
});
|
|
if (flowSources.length === 0) {
|
|
console.error(
|
|
`Missing Flow type definitions for package ${pkg.getDirectoryName()}`,
|
|
);
|
|
}
|
|
flowSources.forEach((flowSource) =>
|
|
fs.copySync(flowSource, pkg.resolve('npm', path.basename(flowSource))),
|
|
);
|
|
['package.json', 'README.md'].forEach((fn) =>
|
|
fs.copySync(pkg.resolve(fn), pkg.resolve('npm', fn)),
|
|
);
|
|
fs.copySync('LICENSE', pkg.resolve('npm', 'LICENSE'));
|
|
}
|
|
|
|
/**
|
|
* Prepares the npm directories for all public packages. If a package should
|
|
* not be published, make sure to set `"private": true` in its package.json.
|
|
*/
|
|
function preparePublicPackages() {
|
|
packagesManager.getPublicPackages().forEach(preparePackage);
|
|
}
|
|
|
|
preparePublicPackages();
|