Simon Hänisch
Simon Hänisch
Well the koa-shopify-auth package hasn't changed in the last 11 days so yeah I assume it was the "newest version" 🤷🏻♂️
Yup would be nice if you compile your schemas into json in like a `dist` folder or sth, so we could use them as ``` https://unpkg.com/@zeit/schemas/dist/deployment/config ``` :nerd_face:
I'd rather want this to be configurable from within `package.json`, cause that's how I configure many other tools, e. g. prettier, linters, and so on, without cluttering my project with...
> because you can obviously see which config is being used without searching for .xxx-rc file or the very bottom of package.json. Nope, in the CLI arg I can only...
It's quite simple to implement a service yourself in a couple of lines: ```ts // localization.ts export let translation: Translation; export const loadTranslation = async (locale = 'en-us') => {...
@pairmix doesn't sound so bad either... how does your translator component know which locale to use though? BTW Angular pipes are just syntactic sugar for function calls, e. g. `'SOME_KEY'...
The broken test is from eec7651fa723658c2c8d853dc44b6316709b2317 (see https://github.com/ionic-team/stencil/runs/1796291494). All other tests pass locally.
Interesting, I didn't know that. Is this different when using a normal `function h` instead of assigning an anonymous arrow function to `h`? Do you have a link that explains...
Hm, idea: ```ts const h = () => { /* ... */ } export default h export const Fragment = (_, children) => children ``` ```ts import h from './h'...
Never mind, mixing default and named exports doesn't seem to work with Rollup (see [repl](https://rollupjs.org/repl/?version=2.41.5&shareable=JTdCJTIybW9kdWxlcyUyMiUzQSU1QiU3QiUyMm5hbWUlMjIlM0ElMjJtYWluLmpzJTIyJTJDJTIyY29kZSUyMiUzQSUyMmltcG9ydCUyMGglMjBmcm9tJTIwJy4lMkZoLmpzJyUzQiU1Q24lNUNuaCgpJTNCJTVDbiU1Q25jb25zb2xlLmxvZyhoLkZyYWdtZW50KSUzQiUyMiUyQyUyMmlzRW50cnklMjIlM0F0cnVlJTdEJTJDJTdCJTIybmFtZSUyMiUzQSUyMmguanMlMjIlMkMlMjJjb2RlJTIyJTNBJTIyY29uc3QlMjBoJTIwJTNEJTIwKCklMjAlM0QlM0UlMjBjb25zb2xlLmxvZygnSSUyMGFtJTIwaC4nKSUzQiU1Q24lNUNuZXhwb3J0JTIwZGVmYXVsdCUyMGglM0IlNUNuJTVDbmV4cG9ydCUyMGNvbnN0JTIwRnJhZ21lbnQlMjAlM0QlMjAoKSUyMCUzRCUzRSUyMGNvbnNvbGUubG9nKCdJJTIwYW0lMjBGcmFnbWVudC4nKSUzQiUyMiUyQyUyMmlzRW50cnklMjIlM0FmYWxzZSU3RCU1RCUyQyUyMm9wdGlvbnMlMjIlM0ElN0IlMjJmb3JtYXQlMjIlM0ElMjJlcyUyMiUyQyUyMm5hbWUlMjIlM0ElMjJteUJ1bmRsZSUyMiUyQyUyMmFtZCUyMiUzQSU3QiUyMmlkJTIyJTNBJTIyJTIyJTdEJTJDJTIyZ2xvYmFscyUyMiUzQSU3QiU3RCU3RCUyQyUyMmV4YW1wbGUlMjIlM0FudWxsJTdE)).