Roman Vasilev

Results 164 comments of Roman Vasilev

No, it is not possible to have variables/dynamic values in directive comments. Have you tried people solutions for class-validator? - https://github.com/typestack/class-validator/issues/169 - https://github.com/kasir-barati/class-validator-translator-middleware

What is fieldReference/FieldRefInput?

``` "extract-text-webpack-plugin": "3.0.0-rc.2", "webpack": "3.1.0", ``` Copied `extract-text-webpack-plugin` to dependency of css-entry-webpack-plugin Result: ``` C:\Dev\project\node_modules\css-entry-webpack-plugin\node_modules\extract-text-webpack-plugin\dist\index.js:246 if (extractedChunk.getNumberOfModules()) { ^ TypeError: extractedChunk.getNumberOfModules is not a function at ExtractTextPlugin. (C:\Dev\project\node_modules\css-entry-webpack-plugin\node_modules\extract-text-webpack-plugin\dist\index.js:246:32) at Array.forEach...

@dorianWB Could you provide more details about how you get similar result? I've tried use `extract-text-webpack-plugin` instead but still get style.js

Thanks @dorianWB I made some to cheeky modifications to get rid of unused js ``` config.output.filename = `dummy.js`; ... plugins: [ new ExtractTextPlugin(`[name]${options.prod ? '-[contenthash:6]' : ''}.css`), // Duck typed...

Mention mainterners of `convert-source-map` @thlorenz

I made some research. I patched node_modules/@semantic-release/npm/lib/publish.js ``` const command = `npm publish ${basePath} --userconfig ${npmrc} --tag ${distTag} --registry ${registry}`; require('child_process').execSync(command); ``` Same result, it maybe issue with npm itself...

> > But if I execute this command locally, it works without errors. > > in your local test, did you execute directly from your dist directory, or with the...

> i'm wondering if what you are describing is either a breaking change in npm or a bug that should be reported to them. In [1st comment](https://github.com/semantic-release/npm/issues/504#issue-1323472885) I described behavior...