sergei.tarassov

Results 20 comments of sergei.tarassov

@0xdevalias in the notebook is a step about photo conversion "jpg to png". Maybe step was skipped

I had same issue (with TerserPlugin). My problem was that I used vue-cli-plugin-nativescript-vue with vue-cli 4.x They have different interface usage(4 vs 6) within webpack-chain plugin.

@juuyan Yarn workspaces are not compatible with pnp mode.

> Just wanted to mention that the list of "Mappings to keep in mind" might also need to consider the "imports" field in package.json. I had trouble using it with...

FYI: https://github.com/axe-me/vite-plugin-node/issues/95#issuecomment-1875491999

@khludenevav you can register runtime ts transpiler(ts-node or swc) via index.js like ``` require('ts-node').register({ /* options */ }); module.exports = require('./src/index.ts'); ```

[Unable to build](https://github.com/gagern/node-libtidy/pull/22#issuecomment-405209432) on my osx 10.13.4 machine: ``` ➜ uname -a Darwin mymachine.local 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 x86_64 ```

@thgh Add namespace for nest server. I hope that helps. ``` // ./server/bootstrap.ts export async function bootstrap() { const app = await NestFactory.create(AppModule); app.setGlobalPrefix('api'); return app; } ``` Setup custom...

Current version `npm i [email protected]` works well. But new version fails: ``` ➜ node -v v10.5.0 ➜ npm -v 6.1.0 ➜ npm i gagern/node-libtidy#1ee5b88 > [email protected] install /Users/serg/projects/leonweb/node_modules/libtidy > node-pre-gyp...