the error showed in screen
ERROR: Guru Meditation 8d61e2@1069:2d389a [Errno 22] Invalid argument
Pug - это препроцессор HTML и шаблонизатор, который был написан на JavaScript для Node.js.
| // first run npm install ngrok - then put var ngrok = require('ngrok'); at the top of your gulpfile | |
| var ngrok = require('ngrok'); | |
| var browserSync = require('browser-sync') | |
| browserSync({ | |
| server: "./app" | |
| }, function (err, bs) { | |
| ngrok.connect(bs.options.get('port'), function (err, url) { | |
| // https://757c1652.ngrok.com -> 127.0.0.1:8080 | |
| }); | |
| }); |
| $('input#edit-keys-1').blur(function(){ | |
| tmpval = $(this).val(); | |
| if(tmpval == '') { | |
| $(this).addClass('empty'); | |
| $(this).removeClass('not-empty'); | |
| } else { | |
| $(this).addClass('not-empty'); | |
| $(this).removeClass('empty'); | |
| } | |
| }); |
| @mixin hover-focus-active() { | |
| &:hover, | |
| &:focus, | |
| &:active { @content } | |
| } |
| # fetch the changes from the remote | |
| git fetch origin | |
| # show commit logs of changes | |
| git log master..origin/master | |
| # show diffs of changes | |
| git diff master..origin/master | |
| # apply the changes by merge.. |