This repository is meant to coincide with stenciljs/core#4997.
A dev build of Stencil for the PR listed above has been created/used by this project.
That dev build is: @stencil/core@4.7.1-dev.1699535671.a4c3950.
The following sections assume that this repo has been cloned locally and dependencies installed (npm ci).
Note that manual testing should occur on a Windows based machine.
GitHub Issue: stenciljs/core#4980
- Start the dev server of the reproduction case with
npm start - Observe the contents of
src/dev/worksonmymachine.htmlhave been copied towww/dev/worksonmymachine.html(open the both to confirm that they match). - Edit
src/dev/worksonmymachine.html- add text, write a blog, add non-sense - whatever feels right. We only need one character of difference here. - Open
www/dev/worksonmymachine.html, observe your changes made tosrc/dev/worksonmymachine.htmlhave been propagated to the copied file underwww/dev/
GitHub Issue: stenciljs/core#4961
- Start the dev server of the reproduction case with
npm start - Observe that the background of the ‘Hello World’ message is blue. This is controlled by a CSS variable that is defined in a global style for the project.
- In your favorite (or least favorite) text editor, open
src/global.css. This file contains the CSS variable that is currently set to blue. - Modify the value to be a valid CSS color (
red,green, etc.) - Observe the background of the ‘Hello World’ message now properly changes to reflect the changes found in that global CSS file