Dawid Winiarczyk
Dawid Winiarczyk
Hello, I think it might be issue, please check this out: this code below don't return any response from the server. neither error too. ``` const fs = require('fs') const...
It has possibility to change it but what if one library is in parent folder of process.cwd(), and second one in process.cwd()? npm/node by default looks into parental folders to...
as @vigneshshanmugam suggested in https://github.com/zalando/tailor/issues/277 I'm sending PR with updated readme. Thank you
to resolve audit issues tailor need to drop support for nodejs8. Related: https://github.com/zalando/tailor/pull/321
Hello, I created webpack plugin to handle the issue with common libraries used by microservices. It's quiet another approach to @tsnolan23 solution (with creating fragment-common). https://www.npmjs.com/package/microservices-webpack-plugin Using this plugin you...
Hello, since I'm using tslint-loader I have issue with tsconfig-paths. My problem is that tslint-loader try to load tslint using `var Lint = require('tslint');` https://github.com/wbuchwalter/tslint-loader/blob/4d166651d916a0c43dd5a11099d6ff532350e27b/index.js#L8 but same file exists in...
Hello I try to run tslint via command and it's failing on ng-socket-io > Failed to load /www/sites/angular2/streaming/node_modules/ng-socket-io/tslint.json: Could not find custom rule directory: node_modules/codelyzer Removing rulesDirectory solved problem. I...
### Describe the bug I'm using webpack 5.65.0 with such part: ``` output: { filename: '[name].[contenthash].bundle.js', library: 'application', publicPath: 'auto', }, ``` before 1.2.169 it works well calling `window.application` in...
On error reponse I make csrf request and update headers of orginal request and repeat it. This code works in 0.23: ```js const http = axios.create({ baseURL, withCredentials: true, calledCsrfRequest:...