Mikael Lindqvist
Mikael Lindqvist
For some reason I have beefy in my devDependencies but not browserify. Naturally things didn't work for me after doing and `npm install` on a new machine. That's expected. But...
Hi guys, I added the --forceExit flag since I really needed it. It can be discussed if it is really a good idea to write tests that rely on this,...
In a couple of places there are references to `location`, which on a browser reads the location from `window.location`. In an SSR environment, this reads from `global.location` which isn't a...
I'm using cjs and with it I can write my files using the cleaner CommonJS syntax, but use them in a RequireJS environment. No other method that I have tried...
This PR adds a newFilesOnly option. In order to solve e.g. https://github.com/simonh1000/ftp-deploy/issues/42. It does it slightly different than https://github.com/simonh1000/ftp-deploy/pull/141 in that it doesn't rely on any state stored on the...
The function lastMod relies on the FTP command MDTM. The MDTM command returns time strings that look like 19990929043300 meaning 1999-09-29 04:33:00. According to [RFC 3659](https://www.rfc-editor.org/rfc/rfc3659#page-11) these times are in...
I have noticed that if I write something to the log, and then immediately do a `process.exit();`, then the line that was just logged will not be written. I tried...