Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
chore: add missing license to generated packages (#4301)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebodega committed Mar 15, 2023
1 parent af991f4 commit 2af0def
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion npm/rome/scripts/generate-packages.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ function generateNativePackage(platform, arch) {
fs.mkdirSync(packageRoot);

// Generate the package.json manifest
const { version } = rootManifest;
const { version, license } = rootManifest;

const manifest = JSON.stringify({
name: packageName,
version,
license,
os: [platform],
cpu: [arch],
});
Expand Down

0 comments on commit 2af0def

Please sign in to comment.