Add postcss step

This commit is contained in:
Tom Raithel
2017-01-25 14:04:23 +01:00
parent 3443ae050a
commit 4766ec7774
6 changed files with 24 additions and 40 deletions

View File

@@ -1,5 +1,3 @@
import '../styles/main.css';
const add = (x, y) => x + y; const add = (x, y) => x + y;
add(1, 2); add(1, 2);

View File

@@ -4,9 +4,10 @@
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"build": "npm run clean && npm run build:radar && npm run build:webpack", "build": "npm run clean && npm run build:radar && npm run build:js && npm run build:css",
"build:radar": "babel-node ./tasks/build.js", "build:radar": "babel-node ./tasks/build.js",
"build:webpack": "webpack --config webpack.config.js", "build:js": "webpack --config webpack.config.js",
"build:css": "postcss -c postcss.config.json -d dist/ styles/*.css ",
"clean": "babel-node ./tasks/clean.js", "clean": "babel-node ./tasks/clean.js",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
@@ -14,18 +15,17 @@
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"async": "2.1.4", "async": "2.1.4",
"autoprefixer": "6.7.0",
"babel-cli": "6.22.2", "babel-cli": "6.22.2",
"babel-loader": "6.2.10", "babel-loader": "6.2.10",
"babel-preset-latest": "6.22.0", "babel-preset-latest": "6.22.0",
"babel-preset-stage-0": "6.22.0", "babel-preset-stage-0": "6.22.0",
"css-loader": "0.26.1",
"extract-text-webpack-plugin": "2.0.0-beta.5",
"front-matter": "2.1.1", "front-matter": "2.1.1",
"fs-extra": "2.0.0", "fs-extra": "2.0.0",
"marked": "0.3.6", "marked": "0.3.6",
"postcss-loader": "1.2.2", "postcss-cli": "2.6.0",
"postcss-nested": "1.0.0",
"pug": "2.0.0-beta8", "pug": "2.0.0-beta8",
"style-loader": "0.13.1",
"walk": "2.3.9", "walk": "2.3.9",
"webpack": "2.2.0" "webpack": "2.2.0"
} }

9
postcss.config.json Normal file
View File

@@ -0,0 +1,9 @@
{
"use": [
"autoprefixer",
"postcss-nested"
],
"autoprefixer": {
"browsers": "> 5%"
}
}

View File

@@ -1,3 +0,0 @@
body {
background: red;
}

9
styles/styles.css Normal file
View File

@@ -0,0 +1,9 @@
body {
background: red;
box-sizing: border-box;
transform: translate3d(1,1,1);
& h1 {
background: green;
}
}

View File

@@ -1,19 +1,4 @@
var path = require('path'); var path = require('path');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
let cssLoader = ExtractTextPlugin.extract({
fallbackLoader: "style-loader",
loader: [
"css-loader",
"postcss-loader",
]
});
console.log('------------------------------');
console.log(cssLoader);
console.log('------------------------------');
// cssLoader = 'css-loader';
module.exports = { module.exports = {
entry: { entry: {
@@ -33,20 +18,6 @@ module.exports = {
loader: "babel-loader", loader: "babel-loader",
}, },
{
test: /\.css?$/,
include: [
path.resolve(__dirname, "styles")
],
use: [
{
loader: cssLoader,
}
], ],
}, },
],
},
plugins: [
new ExtractTextPlugin("styles.css")
],
} }