Closed
Description
🐞 Bug report
Command (mark with an x
)
- [ ] new
- [ ] build
- [x] serve
- [ ] test
- [ ] e2e
- [ ] generate
- [ ] add
- [ ] update
- [ ] lint
- [ ] xi18n
- [ ] run
- [ ] config
- [ ] help
- [ ] version
- [ ] doc
Is this a regression?
Yes, the previous version in which this bug was not present was: ....Yes. This used to work in cli 1.7.4
Description
A clear and concise description of the problem...In my SCSS files I have something like this:
@import "~scss/some-style";
This code used to look for styles starting from the src folder and worked just fine.
Now I found out that I can use something like this
@import "~src/scss/some-style";
But although my IDE sees the correct path, when I run ng serve
I get an error and the compile fails.
🔬 Minimal Reproduction
To reproduce just put the following line in any component's scss:
@import "~scss/some-style";
Be sure that some-style.scss
exists under the src/scss
folder
🔥 Exception or Error
Module build failed (from ./node_modules/sass-loader/lib/loader.js):
@import "~src/scss/some-style";
🌍 Your Environment
Angular CLI: 7.2.2
Node: 10.14.2
OS: win32 x64
Angular: 7.2.2
... animations, cli, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.12.4
@angular-devkit/build-angular 0.12.4
@angular-devkit/build-optimizer 0.12.4
@angular-devkit/build-webpack 0.12.4
@angular-devkit/core 7.2.4
@angular-devkit/schematics 7.2.2
@angular/cdk 7.3.7
@angular/flex-layout 7.0.0-beta.19
@angular/material 7.3.7
@ngtools/json-schema 1.1.0
@ngtools/webpack 7.2.4
@schematics/angular 7.2.2
@schematics/update 0.12.2
ng-packagr 4.7.1
rxjs 6.5.1
typescript 3.2.2
webpack 4.28.4
Anything else relevant?
I'm using sass-loader v 7.1.0
may be this lines relevant?
in sass-loader/lib/importsToResolve
:
function importsToResolve(url) {
const request = utils.urlToRequest(url);
...
in loader-utils/lib/urlToRequest.js
function urlToRequest(url, root) {
...
if(root !== undefined && root !== false && /^\//.test(url)) {
....
If root was passed