rtritto

Results 310 comments of rtritto

As workaround, waiting for the fix, should I use some configuration in `webpack` to rewrite/resolve/alias that import? Webpack [documentation](https://webpack.js.org/loaders/sass-loader/#resolving-import-at-rules) reports how to import: ``` @import "bootstrap"; The loader will first...

Is there any update? https://github.com/webpack-contrib/sass-loader/issues/802#issuecomment-826322124 FYI @arcanis @mister-ben

Thanks for answer. Running current scripts in `package.json`: - `build:css:cdn` : `sass --load-path='./' --no-source-map src/css/vjs-cdn.scss dist/alt/video-js-cdn.css` - `build:css:default`: `sass --load-path='./' --no-source-map src/css/vjs.scss dist/video-js.css` I get: ```console Error: Can't find stylesheet...

@gkatsev `video-js.scss` file can't be imported or compiled with `node-sass` but only with `sass` like `build:css` scripts, in `package.json` of `video.js`, that use `sass`. Anyway `node-sass` isn't supported by `sass-loader`...

- Remove hardcoded *node_modules* in `video-js.scss` #7208 - Replace `npm` with `yarn` (berry version) to: - Reduce package size and installation time - Increase consistency (use default Plug'n'Play checks for...

Will be fixed with #583 FYI @BlackthornYugen

SSL env vars are fixed in [commit](https://github.com/mongo-express/mongo-express/commit/965bec9229796f89478211e8fe5b97145cde46bc). sslCA is changed with [commit](https://github.com/mongo-express/mongo-express/commit/5db02b247d54e6d44e924b451806ad51d59f6281). From mongodb v4 (#857) the _useUnifiedTopology_ option isn't needed ([source](https://www.mongodb.com/docs/drivers/node/current/whats-new)): ```console It is longer required to specify useUnifiedTopology...

From _codemirror_ v6 the package is converted to ESM standard. It can be imported only by ESM projects (this generates the require.resolve import error). In v6 Css and Theme folders...