Navigation Menu

Skip to content

Commit

Permalink
Updates PostCSS dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethormandy committed Dec 29, 2015
1 parent 27c0759 commit 471a0bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -29,13 +29,14 @@
"autoprefixer": "6.1.2",
"clean-css": "3.4.8",
"css-mixed-properties": "1.1.0",
"css-mqpacker": "4.0.0",
"cssnext": "1.8.4",
"cssstats": "2.1.2",
"eyeglass": "sass-eyeglass/eyeglass#a5ae156",
"mocha": "2.3.4",
"node-sass": "3.4.2",
"postcss": "5.0.12",
"postcss-font-variant": "2.0.0",
"postcss-move-media": "1.0.0-pre",
"postcss-nested": "1.0.0",
"postcss-scss": "0.1.3",
"watch": "0.16.0"
Expand Down
4 changes: 4 additions & 0 deletions scripts/css.js
Expand Up @@ -9,6 +9,8 @@ var nested = require('postcss-nested')
var filesize = require('filesize')
var Cleancss = require('clean-css')
var autoprefixer = require('autoprefixer')
var packer = require('css-mqpacker')
var mover = require('postcss-move-media')
var pkg = require('../package.json')


Expand Down Expand Up @@ -43,6 +45,8 @@ compile = function() {
.use(cssstats())
.use(autoprefixer())
.use(nested())
.use(packer())
.use(mover())
.use(reporter())
.process(src)

Expand Down

0 comments on commit 471a0bb

Please sign in to comment.