Nathan Kerr
Nathan Kerr
Personally, I think it should be dropped as a "prefixed" style since `-webkit-box-pack` is not directly compatible with `justify-content`. It's not a huge deal, I just noticed it when Webstorm...
For every command that starts with "sudo", just leave off the sudo: > sudo npm install becomes > npm install
Here's an embed: https://runkit.com/embed/w12vm65kiqky Note that the .sheet() call generates class names instead of keyframes.
I don't know if I should make a separate post, but the `keyframes` and `virtual` addons don't work together. The virtual addon tries to virtualize the keyframes and messes it...
It's quite possible to make one. I made one for Rollup: https://bitbucket.org/TheBosZ/rollup-plugin-nano-css/
I've created a loader that does the same thing as my Rollup plugin: https://www.npmjs.com/package/nano-css-loader
For me, I had to sign the debug APK using the keystore I linked in the Play Console. After that, I was able to get `SIGN_IN_SUCCESS`
This same thing happens in Firefox. It throws a more instructive exception though: `TypeError: 'get crypto' called on an object that does not implement interface Window.`
Would it work to change it to use `Object.assign()`? If I do that, it doesn't throw errors: ```javascript var a = Object.assign({}, window); a.crypto.getRandomValues(new Uint8Array(16)); > Uint8Array(16) [154, 140, 83,...