Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

0.13.0

Compare
Choose a tag to compare
@MoOx MoOx released this 09 Jun 05:48
· 1344 commits to master since this release

tl;dr;

No breaking changes!

  • You can just remove stuff from your .gitignore file since now static
    builded files are hidden
    • scripts/_
    • *.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 to web_modules.
    Feel free to adjust to your need.

Details

  • Changed: node (static) bundle (phenomic.node.bundle.js) is now hidden
    (in node_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 from node_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)