Last active
December 5, 2019 13:11
-
-
Save Legends/241539c9e4c390a5ed41a8d7a3b3a745 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "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