Skip to content

Commit

Permalink
Version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ezhivitsa committed Aug 8, 2018
1 parent 6c92796 commit 373e550
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 157 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v2.3.0 (2018-08-08)

- Replace `postcss-cssnext` with `postcss-preset-env`
- Update npm dependencies

## v2.2.0 (2018-05-14)

- Fix component `button-link`
Expand Down
172 changes: 24 additions & 148 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextjs-landing-starter",
"version": "2.2.0",
"version": "2.3.0",
"description": "Common landing website starter driven by next.js",
"main": "src/server/app.js",
"author": "Paralect",
Expand Down Expand Up @@ -36,10 +36,10 @@
"find-up": "2.1.0",
"lodash": "4.17.10",
"next": "6.1.1",
"normalize.css": "8.0.0",
"npm-run-all": "4.1.3",
"postcss-import": "12.0.0",
"postcss-nested": "3.0.0",
"postcss-normalize": "6.0.0",
"postcss-preset-env": "5.3.0",
"prop-types": "15.6.2",
"react": "16.4.0",
Expand Down
2 changes: 0 additions & 2 deletions postcss.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const { join } = require('path');
const postcssImport = require('postcss-import');
const postcssPresetEnv = require('postcss-preset-env');
const postcssNested = require('postcss-nested');
const postcssNormalize = require('postcss-normalize');

const cssnano = require('cssnano');

Expand All @@ -14,7 +13,6 @@ module.exports = {
path: ['styles'],
}),
postcssNested,
postcssNormalize(),
postcssPresetEnv({
stage: 2,
features: {
Expand Down
6 changes: 1 addition & 5 deletions src/client/styles/global.pcss
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
/* stylelint-disable */
@import-normalize;
/* stylelint-enable */

@import 'normalize.css';
@import 'variables.pcss';

* {
Expand All @@ -16,7 +13,6 @@ html {

body {
min-height: 100vh;
margin: 0;
}

h1 {
Expand Down

0 comments on commit 373e550

Please sign in to comment.