1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-01-17 05:38:15 +01:00
nes.css/scss/nes.scss
Trezy a34cac4aca build: Make build versions dynamic
Hehehehe, this is really cool. I've removed the hardcoded version number from `nes.scss` and
replaced it with a custom function. This function does all sorts of cool stuff.

1. **Injects the framework version from `package.json`
  This prevents us from having to inject the version number manually.
2. **Adds build info…**
  The branch that the CSS was built from, when it was built, what version of Node was used… All of the useful information that we could possibly provide. If it’s built on CircleCI, it even includes the build number.
3. **…but not too much build info**
  If the build is running against the `master` branch, we only inject the framework version. No need to bloat production builds with all the other junk. 😁
2018-12-16 21:15:59 -06:00

13 lines
377 B
SCSS

@charset "utf-8";
/*****************************************************************************\
#{version()}
\*****************************************************************************/
@import "base/_index.scss";
@import "utilities/_index.scss";
@import "elements/_index.scss";
@import "form/_index.scss";
@import "icons/_index.scss";
@import "pixel-arts/_index.scss";