You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run yarn start in a newly created create-react-app project
Actual behavior
You'll see errors like
Failed to parse source map from '/home/circleci/project/packages/icons/src/generated/20px/blueprint-icons-20.css' file: Error: ENOENT: no such file or directory, open '/home/circleci/project/packages/icons/src/generated/20px/blueprint-icons-20.css'
Notice the path contains /home/circleci.
Expected behavior
Source map paths should be relative.
Possible solution
Blueprint is using renderSync to generate source maps.
Environment
Steps to reproduce
Run
yarn start
in a newly createdcreate-react-app
projectActual behavior
You'll see errors like
Notice the path contains
/home/circleci
.Expected behavior
Source map paths should be relative.
Possible solution
Blueprint is using
renderSync
to generate source maps.blueprint/packages/node-build-scripts/sass-compile.ts
Line 60 in 3c4daa7
This generates absolute paths to source maps, and is not configurable, per sass/dart-sass#1437.
PR incoming!
The text was updated successfully, but these errors were encountered: