Results 67 issues of x-yuri

Wrong: ```js new OptimizeCssAssetsPlugin({cssProcessorOptions: {map: true}}) ``` Correct: ```js new OptimizeCssAssetsPlugin({cssProcessorOptions: {map: {inline: false, annotations: true}}}) ``` Since with `optimize-css-assets-webpack-plugin` `map` is supposed to be an [object][1]. More info [here][2]....

I expect it to first run `setup` task's commands, followed by commands of `deploy` task. What actually happens is `setup`'s commands along with `deploy`'s commands got incorporated into [`deploy.sh.erb`][1]. And...

bug

Consider what [`mina-sidekiq`][1] suggests: ```rb task :deploy do deploy do invoke :'sidekiq:quiet' ... on :launch do ... invoke :'sidekiq:restart' end end end ``` `sidekiq:quiet` and `sidekiq:restart` both depend on `environment`...

waiting for input

There's no way to not have a slash when `path` is [empty][1], ```js return `${this.apiUrl}/${path}${slash}` ``` [1]: https://github.com/twg/devour/blob/v2.0.13/src/index.js#L150

bug
needs information

The part of the README on [cancellable requests][readme] says: [readme]: https://github.com/twg/devour/blob/v2.0.13/README.md#your-second-middleware ```js let cancellableRequest = { name: 'axios-cancellable-request', req: function (payload) { let jsonApi = payload.jsonApi return jsonApi.axios(payload.req, { cancelToken:...

I'm able to do the following in webpack: ```js module.exports = { ... output: { path: path.resolve('../webpack_bundles/[hash]'), filename: '[name].js', }, ... }; ``` But `django-webpack-loader` doesn't allow that. [Here][1] you...

First, I realized that numbering scheme for jobs are somewhat odd. I've got 34 failed jobs now, and the numbers go (judging from "Remove" links): page 1 (`-7..-20`), page 0...

Bug
Hard

Otherwise it's hard to learn what some particular version is like.

In 2.x `resolver-url-loader` tried every dir of a package (`bootstrap-sass`) to resolve an URL. In 3.x they only try corresponding css file's directory. I guess it has to do with...

question

That's me again :) Hopefully you haven't got tired of my issues. I must admit, I don't have the need to add custom entries yet. It's just that this prompt...

bug