Skip to content

Commit

Permalink
fix: Added prepack script to rename .gitignore as _gitignore
Browse files Browse the repository at this point in the history
Following the conventions of `init.ts` L33 which replaces dot files
starting with _ this prepack temporarily renames gitignore to fit within
the requirements

BREAKING CHANGE: No

Closes: wevm#106
  • Loading branch information
codingwithmanny committed Mar 2, 2024
1 parent 5881eb1 commit a122ce2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions create-vocs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"name": "create-vocs",
"version": "1.0.0-alpha.5",
"type": "module",
"scripts": {
"prepack": "mv templates/default/.gitignore templates/default/_gitignore",
"postpack": "mv templates/default/_gitignore templates/default/.gitignore"
},
"bin": {
"create-vocs": "./_lib/bin.js"
},
Expand Down

0 comments on commit a122ce2

Please sign in to comment.