Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: export copyFolder and mergePackageJson #16

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,12 @@ function sortObjectKeys(obj: Record<string, unknown>) {
return sortedObj;
}

function mergePackageJson(targetPackage: string, extraPackage: string) {
/**
* Merge two package.json files and keep the order of keys.
* @param targetPackage Path to the base package.json file
* @param extraPackage Path to the extra package.json file to merge
*/
export function mergePackageJson(targetPackage: string, extraPackage: string) {
if (!fs.existsSync(targetPackage)) {
return;
}
Expand All @@ -306,7 +311,16 @@ function mergePackageJson(targetPackage: string, extraPackage: string) {
fs.writeFileSync(targetPackage, `${JSON.stringify(mergedJson, null, 2)}\n`);
}

function copyFolder({
/**
* Copy files from one folder to another.
* @param from Source folder
* @param to Destination folder
* @param version Version to update in package.json
* @param packageName Name to update in package.json
* @param isMergePackageJson Merge package.json files
* @param skipFiles Files to skip
*/
export function copyFolder({
from,
to,
version,
Expand Down