Skip to content

Instantly share code, notes, and snippets.

@Legends
Last active December 5, 2019 13:11
Show Gist options
  • Select an option

  • Save Legends/241539c9e4c390a5ed41a8d7a3b3a745 to your computer and use it in GitHub Desktop.

Select an option

Save Legends/241539c9e4c390a5ed41a8d7a3b3a745 to your computer and use it in GitHub Desktop.
"scripts": {
"prod": "webpack --config webpack.config.prod.js --colors --mode production && .\\delfolder.bat && yarn deploy2",
"deploy":"xcopy \"C:\\Users\\User\\Source\\Repos\\legends.static.github.io\\dist\" \"C:\\inetpub\\wwwroot\\afolder\" /S /Y",
"deploy2":"robocopy \"C:\\Users\\User\\Source\\Repos\\legends.static.github.io\\dist\" \"C:\\inetpub\\wwwroot\\afolder\" /COPY:DATS /MOVE /PURGE /S",
},
delfolder.bat in project root: (deletes all files/folders of a specified directory)
del /q "C:\inetpub\wwwroot\legends\*"
FOR /D %%p IN ("C:\inetpub\wwwroot\legends\*.*") DO rmdir "%%p" /s /q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment