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
save said file into the artifact or embed it into the compiled CSS
properly link the map in the compiled CSS to the source Sass files.
I have tried:
setting sourceMap to the desired map file path - seemingly no map is generated
setting sourceMap to true and outFile to the desired map file output - no output, but it did attempt to update the link in the compiled CSS
setting omitSourceMapUrl to false - didn't seem to do anything
setting both sourceMap and sourceMapEmbed to true - it did not embed the map
I even manually checked both the post-compile artifacts and the post-Pages publish artifacts for a map file or embedded map, but none of them had either.
To Reproduce
Take the quick start template and modify the paths and branches it expects to what my repo uses
Integrate it with Pages to deploy after it finishes compiling
Feel free to browse through my commit history for my workflow file: deploy-to-pages.yml
Expected behavior
I would have expected a map file to be generated.
The text was updated successfully, but these errors were encountered:
Mase3206
changed the title
Fails to save, embed, or properly link map files
Fails to create, save, embed, or properly link map files
Oct 3, 2024
Thanks for providing a public repo, helps a whole bunch!!!
It seems your configurations are correct and things should work... checking some of the Action logs it looks like at points it may have been attempting to write to non-existent sub-directories, and at some point it also looks like ya forked and fixed things too :-D
Tip for faster debugging; it be possible to test this Action locally, all the options can be defined via shout-casing the keys and prefixing with INPUT_, for example setting the input/output paths within the package.json
That tip for local testing is super helpful, thank you!
I'm still working on my fork. Things went waaaay deeper than expected, and I'm still unable to get the Sass JS API to cooperate. I'm a full time student and my classes just got super busy for a moment, so it will probably be a bit before I can keep digging into it.
Describe the bug
I haven't been able to get this action to:
I have tried:
sourceMap
to the desired map file path - seemingly no map is generatedsourceMap
to true andoutFile
to the desired map file output - no output, but it did attempt to update the link in the compiled CSSomitSourceMapUrl
to false - didn't seem to do anythingsourceMap
andsourceMapEmbed
to true - it did not embed the mapI even manually checked both the post-compile artifacts and the post-Pages publish artifacts for a map file or embedded map, but none of them had either.
To Reproduce
Feel free to browse through my commit history for my workflow file: deploy-to-pages.yml
Expected behavior
I would have expected a map file to be generated.
The text was updated successfully, but these errors were encountered: