Skip to content

Commit

Permalink
fix transformer not being published
Browse files Browse the repository at this point in the history
  • Loading branch information
MZanggl committed Oct 25, 2023
1 parent ed869df commit 17dd627
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"copymeta": "cp README.md package.json dist",
"build": "npm run clean && tsc",
"publish:dist": "npm run build && npm run copymeta && cd dist && npm publish"
"copy:meta": "cp README.md package.json dist",
"copy:transformers": "cp transformers dist/transformers -r",
"build": "npm run clean && tsc && npm run copy:transformers",
"publish:dist": "npm run build && npm run copy:meta && cd dist && npm publish"
},
"keywords": [
"mock",
Expand Down

0 comments on commit 17dd627

Please sign in to comment.