David Weldon

Results 10 comments of David Weldon

That's a great idea! I'm learning about elixir right now. I think a fun project would be to do an elixir port followed by publishing on hex. I'll follow up...

Here's what my `play/index.js` looks like: ```js import Vue from 'vue'; import router from '@/router'; import VueRouter from 'vue-router'; // Enable plugins Vue.use(VueRouter); Vue.extend().options.router = router; // Add scenarios const...

See #44 for a related discussion. @sky790312 I haven't updated the article yet. Please see my updated directions here: https://gist.github.com/dweldon/b6ab44b4f53ffdfad3a77b3157f0833c

@sky790312 You can import your global styles from `src/play/index.js`. This is shown in step 3 where I do: `import 'css';` - I actually have a `src/css/index.js` which then imports all...

@sky790312 It's exactly what it sounds like. Webpack is magic. My `src/css/index.js` looks like this: ```js import './base.styl'; import './forms.styl'; import './tooltips.styl'; ``` If you want all of your styl...

For anyone working on this, you can see my hacky solution [here](https://dweldon.silvrback.com/vue-play).

I just added an updated (and more detailed) set of instructions here: https://gist.github.com/dweldon/b6ab44b4f53ffdfad3a77b3157f0833c This new version integrates with the existing webpack build process instead of using `vue-play-cli`.

@pulkitnandan Well it works for me, but I'm using the absolute latest version of vue-cli webpack. I will attempt to keep the instructions updated as new versions are released. You...

I have a service running meteor, and I'm investigating horizon. A couple of things to consider: 1. In meteor, the password is hashed on the client before being transmitted to...

If you're using ESM, you can import it like this: ```js import _MagicLoginStrategy from 'passport-magic-login'; const MagicLoginStrategy = _MagicLoginStrategy.default; const magicLogin = new MagicLoginStrategy({ ... }); ```