Skip to content

Commit

Permalink
ci: ensure npm folder is created on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
salamaashoush committed May 27, 2024
1 parent a385583 commit 5e5193b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/witty-meals-ring.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"pactup": patch
---

ci: ensure npm folder is created on ci
2 changes: 1 addition & 1 deletion scripts/generate-packages.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function generateNativePackage(target) {

// Create the package directory
console.log(`Create directory ${packageRoot}`);
fs.mkdirSync(packageRoot);
fs.mkdirSync(packageRoot, { recursive: true });

// Generate the package.json manifest
const { version, author, license, homepage, bugs, repository } = rootManifest;
Expand Down

0 comments on commit 5e5193b

Please sign in to comment.