This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
0.13.0
tl;dr;
No breaking changes!
- You can just remove stuff from your
.gitignore
file since now static
builded files are hiddenscripts/_
*.bundle.js
- If you want global (normal) CSS (no CSS Modules), you can just update your
webpack.config.js
(if not done already) to add support for
global CSS via*.global.css
files.
See the corresponding changes.
Note that the scope has be restricted toweb_modules
.
Feel free to adjust to your need.
Details
- Changed: node (static) bundle (
phenomic.node.bundle.js
) is now hidden
(innode_modules/.cache/phenomic
,
thanks to find-cache-dir)
(#439 - @MoOx) - Fixed: files should not be created anymore near your phenomic.node script
(#439 - @MoOx)
Boilerplate
- Changed: (boilerplate) loader for CSS is only applied to local
web_modules
.
If you want to consume CSS fromnode_modules
you will need to define your
own section and adjust the scope accordingly (depending on wether it's global
CSS or CSS Modules...)
(#516 - @MoOx) - Added: (boilerplate)
*.global.css
can be just normal CSS (not CSS Modules)
(#443 and
#95 - @MoOx) - Added: (boilerplate) add a default meta viewport tag
(@MoOx)