Skip to content

Releases: moso/flexgrid

v3.0.4

19 Dec 12:46
Compare
Choose a tag to compare

Changelog

Security updates
- Several upgrades of dependencies that contained insecure code

Updated Netlify config
- Updated the NodeJS version- and (fixed) the Yarn version used to compile the project on Netlify.

Updated Travis CI config
- Updated the NodeJS version used to compile the project on Travis

Updated CircleCI config
- Updated the NodeJS version used to compile the project on CircleCI

v3.0.3

18 Oct 13:20
Compare
Choose a tag to compare

Changelog
To automate the build process a bit, I've added some new features.

  • Added flexgrid-utils.scss with an override for the $enable-utils variable
  • Updated webpack.config.js with a new entry for flexgrid-utils.scss
  • Updated the README reflecting these changes
  • Removed the package-lock.json as npm will run fine without, and we already have a yarn.lock

The following files will now be generated upon running yarn run build:

flexgrid.css            # regular CSS
flexgrid.map.css        # map file
flexgrid.min.css        # minified version

flexgrid-utils.css      # regular CSS including margin utilities
flexgrid-utils.map.css  # map file for margin utilities
flexgrid-utils.min.css  # minified version including margin utilities

Also, since 3.0.2 this project is being built on Netlify, Travis CI, and CircleCI to make sure the code isn't breaking.

v3.0.2

17 Oct 14:17
Compare
Choose a tag to compare

Changelog

3.0.2 (2019-10-17)

  • Added compiled build including utilities. Find them at /dist/flexgrid-utils.css, etc.
  • Minor code clean-up

v3.0.1

15 Oct 07:58
Compare
Choose a tag to compare

Changelog

3.0.1 (2019-10-14)
  • Renamed _flexgrid to _gridgenerator after discovering some @import issues in external projects because of name clashing
  • Updated dependencies

v3.0.0

09 Oct 12:16
Compare
Choose a tag to compare

Changelog

3.0.0 (2019-10-09)
  • Complete transition to webpack
  • Rewrite of the grid generator
  • Simplified alignment class names
  • Added optional margin utilities
  • Added space-evenly (note: no support in IE, space-between is used as fallback)
  • Ditched Tailwind syntax (use 2.x branch if you need it)
  • Discarded demo files - use the new documentation website

Older changelogs can be found in the 2.x branch.