puelo
puelo
Had the same issue. Workaround with this in the index.ts in the server directory worked for me: ``` import * as UIFunctions from './ui' import * as SheetFunction from './sheets'...
You are experiencing the limitations of this library in terms of encrypted PDFs. See here: https://github.com/Hopding/pdf-lib#encryption-handling. You are using `ignoreEncryption`, but this will just "hide" the issue.
I am not the original author of this package, but i've forked it and build very basic/crude decryption support: https://github.com/KammererTob/pdf-lib Note that this is probably not bug-free and also not...
@GiuseppePennisi No. I haven't published my fork anywhere. For my own project i build it once and then used the minified file directly.
@Sharcoux It has been a while since i looked at the specs, but here are my answers from the top of my head: 1. True. My code was only aimed...
Same here. We use spotless as maven plugin with palantir-java-format and ``. For on the spot formatting we use the IntelliJ plugin. Executing the maven goal is ordering the imports,...
The same problem seems to occur when the source .exe or folder contains spaces.
The underlying protocol is not the same i think, mainly because GraphQL did not define it in any spec (see here: https://www.apollographql.com/docs/react/data/subscriptions/#choosing-a-subscription-library). `graphql-ws` besides also supporting the `subscription` operation, allows...