Skip to content

Commit

Permalink
Add cleaning commands for TV projects
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinber committed Jun 27, 2024
1 parent 1933e1e commit 3bee37c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
"copyToWebOS": "cp ./dist/js/bitmovin-player-yospace.js ./WebOS/src/js && cp ./web/index.html ./WebOS && cp ./web/js/*.js ./WebOS/src/js",
"lint": "eslint --quiet src/ && kacl lint",
"format": "prettier --write src/",
"clean": "rm -R ./dist",
"clean": "npm run clean-dist && npm run clean-tv",
"clean-dist": "rm -R ./dist",
"clean-tv": "npm run clean-tv-tizen && npm run clean-tv-webos",
"clean-tv-tizen": "rm tizen/js/*.js && rm tizen/index.html",
"clean-tv-webos": "rm WebOS/src/js/* && rm WebOS/index.html",
"prepare": "husky install"
},
"lint-staged": {
Expand Down

0 comments on commit 3bee37c

Please sign in to comment.