Björn
Björn
For me it actually works, so maybe I can help. I am running `jspm-0.16.0` and `karma-jspm-2.0.1-beta.2`. karma.conf.js: ``` { basePath: '.', frameworks: ['jspm', 'jasmine'], browsers: ['PhantomJS'], port: 9876, plugins: [...
This issue is based on my support ticket. I just had a look again and /info and /gossip still do not match and as far as I can tell have...
We are seeing this too. I am adding the error message as text here because right now it is not indexed by any search engines. ``` $ yarn next build...
I think the issue is caused by trying to write into `__dirname` at https://github.com/hanford/next-offline/blob/master/packages/next-offline/index.js#L88 which with yarn 2/pnp is a zip file and not a writeable location. Edit: I tried...
If other people want to try this fix, use the yarn patch protocol in your package.json: ``` "jest-junit": "^9.0.0", "next-offline": "patch:next-offline@^5.0.2#./next-offline.patch", "next-svgr": "^0.0.2", ``` where `next-offline.patch` contains ``` diff --git...
Coming back to this, after a while. It seems I got a working protostream marshaller for `AccessTokenImp`, but I am now stuck with serializing `OpenIdContextImpl`: ``` org.infinispan.protostream.annotations.ProtoSchemaBuilderException: The class org.glassfish.soteria.mechanisms.openid.domain.IdentityTokenImpl...
Managed to work around this by creating custom marshallers for protostream: https://github.com/bjorndown/soteria-oidc-protostream-marshaller EDIT: I spoke too soon. The field `JsonObject claims` of `OpenIdContextImpl` is not easily serializable with Protostream because...
> There is no such thing as a reference implementation Oh ok that is interesting because here it says reference implementation: https://docs.jboss.org/hibernate/stable/validator/reference/en-US/html_single/#validator-gettingstarted-uel But I noticed that they link to https://github.com/eclipse-ee4j/el-ri...