vanhumbeecka
vanhumbeecka
Dunno about extending it. I use it as a simple wrapper for injecting Stripe. As long as the as-is version keeps being maintained, that's certainly good enough for me. Maybe...
Same issue here. When setting the `com.apple.security.cs.disable-library-validation` as suggested above, this works only when building+signing+notarizing for mac for distribution Outside the Mac App store (with `electron-builder`) However, for the Mac...
@rhagigi thanks for posting this fix. Just what I needed, and works perfectly. I believe the real reason behind this mess is the mapbox API could have picked a better...
Found it. This issue is related to https://github.com/mapbox/mapbox-gl-directions/issues/91#issuecomment-375281525 Fix can be found in the link.
@hutch120 Bumped into the same problem from a Vue application. Also when importing the full `dist` path to get around that browserify issue. You're workaround works fine, although I agree...
Some extra info: Errors are also thrown on the ```MutationAction``` when he wants to set the ```roles``` (first param). This is essentially the same problem that module parameters (state params)...
@FlorianWendelborn nope, not using this at all. For now, I stopped using dynamic modules altogether. Only using namespaces modules. Works good so far.
Thanks for the elaborated information! I'm fairly new to this space (semantic web) so this info certainly helps. @pmcb55 to answer your question about the use of `ts-rdf-mapper` for the...
Related: https://github.com/nestjs/passport/issues/394
Ok, I solved it myself. Needed to add a @Require tag, like so ``` @Component({ selector: 'time-table', properties: [ '@minHour', '@maxHour', '=myEvents' ] }) @View({template: require('./timetable.html')}) @Inject('$log') @Require('^parent') export class...