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
| {"lastUpload":"2020-05-14T13:32:36.459Z","extensionVersion":"v3.4.3"} |
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
| #!/usr/bin/env sh | |
| ## abort on errors | |
| set -e | |
| ## removing dist folder | |
| rm -rf dist | |
| ## build | |
| npm run build |
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
| // ==================================================================================================================== | |
| // Put this template in the index file of the Vue SPA | |
| // ==================================================================================================================== | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |
| (function(){ | |
| var redirect = sessionStorage.redirect; |
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
| git config --global alias.l "log -n 10 --all --graph --pretty=format:'%Cred%h%Creset -%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative" | |
| git config --global alias.c "commit -m" | |
| git config --global alias.amend "commit --amend -m" | |
| git config --global alias.amend-no "commit --amend --no-edit" | |
| git config --global alias.s status | |
| git config --global alias.co checkout |