Nick Jennings
Nick Jennings
@sindhujit1 Oddly, it's python logging call, with a large message payload, that is causing the error for me.
nconf doesn't seem to have any way to generate an object of all the config params that exist (defaults + user defined values). They don't seem to be in active...
@raucao that's one thing I'm considering (`dotenv`) but the problem is some of the config possibilities are a little more complicated that KEY=VALUE ... e.g. in this PR https://github.com/sockethub/sockethub/pull/894 we...
Actually made a ticket for that `.env` possibility already here: https://github.com/sockethub/sockethub/issues/866
I seem to be having the same issue, execution and tests work fine in deno, but when I try to bundle for npm i get a series of errors relating...
I can get around the type checking failures by adding `typeCheck: false,` to my dnt build script: ```js await build({ typeCheck: false, entryPoints: ["./index.ts"], ... ``` However this leads to...
I'm running into this error as well. ``` error: Failed resolving types. [ERR_TYPES_NOT_FOUND] Could not find types for 'file:///path_to_project/node_modules/.deno/[email protected]/node_modules/ajv-formats-draft2019/index.js' imported from 'file:///path_to_project/packages/schemas/src/validator.ts' at file:///path_to_project/packages/schemas/src/validator.ts:5:34 ``` That line (5): ```typescript import...
@raucao I should have clarified, we use `pnpm-workspaces` for the monorepo stuff now, the only thing we still use Lerna for is version bumping/publishing, which these two things do (without...
This seems to be coming from jabber.org and not other xmpp hosts, while it would be nice if xmpp.js handled it a little more elegantly, it doesn't seem like a...
The full command: ``` st run \ --tls-verify=false \ --checks all \ --exclude-checks=positive_data_acceptance \ --output-truncate=false \ --request-timeout=30000 \ --max-examples=10 \ --report=junit \ --report-dir=${RESULTS_DIR} \ -H "X-Ssl-Cert: OU=foo" https://service.local/openapi.json ```