Skip to content

Commit

Permalink
chore: update package versions to 19.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Feb 21, 2025
1 parent 929eb2b commit de7c494
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pnpm-publish-summary.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"publishedPackages": [
{
"name": "primeng",
"version": "19.0.6"
"version": "19.0.7"
},
{
"name": "@primeng/themes",
"version": "19.0.6"
"version": "19.0.7"
}
]
}
4 changes: 2 additions & 2 deletions scripts/build-helper.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function updatePackageJson(localPackageJson, callback) {

callback?.(pkg);

fs.writeFileSync(localPackageJson, JSON.stringify(pkg, null, 4), { encoding: 'utf8' });
fs.writeFileSync(localPackageJson, JSON.stringify(pkg, null, 4) + '\n', { encoding: 'utf8' });
}

export function createPackageJson_For_NG_Packager(localPackageJson, INPUT_PATH, callback) {
Expand Down Expand Up @@ -78,7 +78,7 @@ export function clearPackageJson(localPackageJson, callback) {

callback?.(pkg);

fs.writeFileSync(localPackageJson, JSON.stringify(pkg, null, 4), { encoding: 'utf8' });
fs.writeFileSync(localPackageJson, JSON.stringify(pkg, null, 4) + '\n', { encoding: 'utf8' });
}

export function copyDependencies(inFolder, outFolder, subFolder) {
Expand Down

0 comments on commit de7c494

Please sign in to comment.