Merge pull request #122 from bitwarden/fix-symlink-win

Fixed Windows Symlink command in package.json for npm scripts
This commit is contained in:
Chad Scharf 2020-04-01 15:44:10 -04:00 committed by GitHub
commit cb8dfe376d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
"sub:update": "git submodule update --remote",
"sub:pull": "git submodule foreach git pull",
"clean": "rimraf dist/**/*",
"symlink:win": "rm -rf ./jslib && cmd /c mklink /J .\\jslib ..\\jslib",
"symlink:win": "rmdir /S /Q ./jslib && cmd /c mklink /J .\\jslib ..\\jslib",
"symlink:mac": "npm run symlink:lin",
"symlink:lin": "rm -rf ./jslib && ln -s ../jslib ./jslib",
"build": "webpack",