Samuli Asmala
Samuli Asmala
The StringIO and cStringIO modules are removed from Python 3. Instead, io module should be imported and io.StringIO or io.BytesIO used for text and data respectively. There is a [related...
I have the same issue, first I get ``` i18next-scanner: Unable to parse Trans component from "/home/vagrant/kehu/client/index.js" Error: acorn-private-class-elements requires acorn@^6.1.0, not 2.7.0 ``` errors for all files. After running...
I can confirm overrides are not working in the currently latest `[email protected]`. This can be reproduced easily with the following `package.json`: ```json { "name": "test", "version": "1.0.0", "engines": { "npm":...
Any update on this? We're having the same issue as @jaxonL and the only solution we found was to create two separate jobs.
I did a workaround for async tasks by using a wrapper function: ```js function scheduleAsyncCron(expression, fn, options) { cron.schedule(expression, () => fn().catch((e) => console.error(e)), options); } scheduleAsyncCron('* * * *...
I have the same issue except I'm not using fomantic-ui but Material-UI. The `npm install postcss-flexbugs-fixes postcss-normalize postcss-preset-env` workaround also fixes the issue for me. I believe something in my...
@kimmobrunfeldt if I create a PR to update the Puppeteer would you consider merging it?
Is the challenge here the other `slonik-tools` packages? For me the `@slonik/migrator` works nicely using `slonik` v30 and IIFE: ```js // migrate.js const {SlonikMigrator} = require('@slonik/migrator') const {createPool} = require('slonik')...
Is this PR waiting for the implementation of the v30 breaking change? If so maybe I could help here and do the necessary changes? ``` v30.0.0 BREAKING CHANGE: now createPool...