Oskar
Oskar
If you use an alias for a subcommand, it takes up the first argument. Take this example: ```js // cli.js args.command(['update', 'x']) // cli-update.js console.log(args.sub) cli update x // -->...
Assuming the following route: ``` js crossroads.addRoute('/chapters/{id}', id => { console.log(id); }); ``` What is the right way to detect a change from `/chapters/1` to `/chapters/2`? The `match` method is...
In v2 you could do ```js import firebase from 'firebase' firebase.database.ServerValue.TIMESTAMP ``` but in v3 `ServerValue` is not defined. What is the right import path? https://firebase.google.com/docs/reference/js/firebase.database.ServerValue.html I tried accessing `database.ServerValue`...
Similar to https://github.com/zeit/release/issues/81 I can't get `release` 3.1.2 to upload releases to some repositories. ``` ✔ Generating the changelog ⠼ Uploading release ✖ Uploading release ``` I tested on a...
Hi, my application has a shortcut on the 'w' key on `keyUp`. If I land on my application in a browser tab after using the default `super+w` to close another...
You have (at least) two options: 1. Deploy to a seperate host from your Wordpress install 2. Deploy as a Wordpress theme Solution 1 is definitely the simplest as it...
Use prettier to standardize and enforce code style. I did not configure it to run automatically on commit or whatever, seems like too much as it really just is style....
Something in the `state` that we JSON serialize can't be parsed. Find what it is and learn how to make it serializable. The PR doesn't work yet. Closes #171
Might need yet another dependency: https://github.com/Rich-Harris/devalue ``` app.js:26 Uncaught TypeError: Converting circular structure to JSON --> starting at object with constructor 'Card' | property 'actions' -> object with constructor 'Array'...