Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

fix: fixed readme file path in build script #76

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion scripts/create-pkg.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const finalFileContent = JSON.stringify(destinationPackageContent, null, 4)
fs.writeFileSync(path.resolve(__dirname, "../dist/package.json"), finalFileContent)

//Copy our readme and license file
const filesToCopy = ["Readme.md", "LICENSE", "CHANGELOG.md"]
const filesToCopy = ["README.md", "LICENSE", "CHANGELOG.md"]
for (let file of filesToCopy) {
fs.copyFileSync(path.resolve(__dirname, `../${file}`), path.resolve(__dirname, `../dist/${file}`))
}
Expand Down