remove SAGE_ENV; uses webpack -d/-p flags; add config file; subfolders in dist/

This commit is contained in:
Patrick Vézina
2016-03-15 10:47:02 -04:00
parent 82cd4c32f6
commit 7fa53e3e37
6 changed files with 81 additions and 41 deletions

10
config.json Normal file
View File

@@ -0,0 +1,10 @@
{
"output": {
"path": "dist",
"publicPath": "/app/themes/sage/dist/"
},
"options": {
"extractStyles": true
},
"devUrl" : "http://example.dev"
}

3
dev.js
View File

@@ -6,11 +6,12 @@ var webpack = require('webpack'),
browserSync = require('browser-sync');
var devBuildConfig = require('./webpack.config'),
config = require('./config'),
compiler = webpack(devBuildConfig);
browserSync.init({
proxy: {
target: 'http://example.dev', // change to dev server
target: config.devUrl,
middleware: [
webpackDevMiddleware(compiler, {
publicPath: devBuildConfig.output.publicPath,

View File

@@ -18,9 +18,9 @@
}
],
"scripts": {
"build:production": "export SAGE_ENV=production && webpack",
"build": "export SAGE_ENV=development && webpack",
"watch": "export SAGE_ENV=development && node dev.js"
"build:production": "webpack -p",
"build": "webpack -d",
"watch": "NODE_ENV=development node dev.js"
},
"engines": {
"node": ">= 0.12.0",

View File

@@ -12,5 +12,5 @@ add_action('customize_register', function (\WP_Customize_Manager $wp_customize)
* Customizer JS
*/
add_action('customize_preview_init', function () {
wp_enqueue_script('sage/customizer.js', asset_path('customizer.js'), ['customize-preview'], null, true);
wp_enqueue_script('sage/customizer.js', asset_path('scripts/customizer.js'), ['customize-preview'], null, true);
});

View File

@@ -6,8 +6,8 @@ use Roots\Sage\Template;
* Theme assets
*/
add_action('wp_enqueue_scripts', function () {
wp_enqueue_style('sage/main.css', asset_path('main.css'), false, null);
wp_enqueue_script('sage/main.js', asset_path('main.js'), ['jquery'], null, true);
wp_enqueue_style('sage/main.css', asset_path('styles/main.css'), false, null);
wp_enqueue_script('sage/main.js', asset_path('scripts/main.js'), ['jquery'], null, true);
}, 100);
/**

View File

@@ -7,28 +7,27 @@ var webpack = require('webpack'),
OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin'),
cssnano = require('cssnano');
var SAGE_ENV = process.env.SAGE_ENV || 'development',
var config = require('./config'),
webpackConfig;
var sage = {
publicPath: '/app/themes/sage/dist/',
dist: path.join(__dirname, 'dist'),
manifest: 'assets.json',
// set to true to extract css in dev mode (prevents "hot" update)
extractStyles: false
};
// format output for Sage : { "name.ext": "hash.ext" }
/**
* Process AssetsPlugin output
* and format for Sage: {"[name].[ext]":"[hash].[ext]"}
* @param {Object} assets passed by processOutput
* @return {String} JSON
*/
var assetsPluginProcessOutput = function (assets) {
var results = {},
name,
ext;
var name,
ext,
filename,
results = {};
for (name in assets) {
if (assets.hasOwnProperty(name)) {
for (ext in assets[name]) {
if (assets[name].hasOwnProperty(ext)) {
results[name + '.' + ext] = assets[name][ext];
filename = name + '.' + ext;
results[filename] = path.basename(assets[name][ext]);
}
}
}
@@ -36,6 +35,30 @@ var assetsPluginProcessOutput = function (assets) {
return JSON.stringify(results);
}
/**
* Loop through webpack entry
* and add the hot middleware
* @param {Object} entry webpack entry
* @return {Object} entry with hot middleware
*/
var addHotMiddleware = function (entry) {
var name,
results = {},
hotMiddlewareScript = 'webpack-hot-middleware/client?reload=true';
for (name in entry) {
if (entry.hasOwnProperty(name)) {
if (entry[name] instanceof Array !== true) {
results[name] = [entry[name]];
} else {
results[name] = entry[name].slice(0);
};
results[name].push(hotMiddlewareScript);
}
}
return results;
}
webpackConfig = {
entry: {
main: [
@@ -46,8 +69,8 @@ webpackConfig = {
]
},
output: {
path: sage.dist,
publicPath: sage.publicPath
path: path.join(__dirname, config.output.path),
publicPath: config.output.publicPath,
},
module: {
preLoaders: [
@@ -75,15 +98,15 @@ webpackConfig = {
},
{
test: /\.(ttf|eot|svg)$/,
loader: 'url?limit=10000'
loader: 'url?limit=10000&name=fonts/[hash].[ext]'
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url?limit=10000&mimetype=application/font-woff'
loader: 'url?limit=10000&mimetype=application/font-woff&name=fonts/[hash].[ext]'
},
{
test: /\.(png|jpg|jpeg|gif)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader'
loader: 'file-loader?name=images/[hash].[ext]'
}
],
},
@@ -92,7 +115,7 @@ webpackConfig = {
jquery: 'jQuery'
},
plugins: [
new Clean([sage.dist]),
new Clean([config.output.path]),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
@@ -100,8 +123,8 @@ webpackConfig = {
'window.Tether': 'tether'
}),
new AssetsPlugin({
path: sage.dist,
filename: sage.manifest,
path: config.output.path,
filename: 'assets.json',
fullPath: false,
processOutput: assetsPluginProcessOutput,
})
@@ -113,24 +136,22 @@ webpackConfig = {
}
};
if ( SAGE_ENV === 'development' ) {
if (process.argv.lastIndexOf('-d') !== -1 ||
process.env.NODE_ENV === 'development') {
// development
webpackConfig.entry.main.push('webpack-hot-middleware/client?reload=true');
webpackConfig.entry.customizer.push('webpack-hot-middleware/client?reload=true');
webpackConfig.output.filename = '[name].js';
webpackConfig.output.sourceMapFilename = '[file].map';
webpackConfig.output.pathinfo = true;
webpackConfig.debug = true;
webpackConfig.devtool = '#cheap-module-source-map';
webpackConfig.output.filename = 'scripts/[name].js';
webpackConfig.plugins.push(new webpack.optimize.OccurenceOrderPlugin());
webpackConfig.plugins.push(new webpack.HotModuleReplacementPlugin());
webpackConfig.plugins.push(new webpack.NoErrorsPlugin());
webpackConfig.plugins.push(new ExtractTextPlugin('[name].css', { disable: !sage.extractStyles }));
webpackConfig.plugins.push(new ExtractTextPlugin('styles/[name].css', {
// disable if webpack is called from the node.js api or set to false in config file
disable: (process.env.NODE_ENV === 'development' || config.options.extractStyles === false)
}));
} else {
// production
webpackConfig.output.filename = '[name].[hash].js';
// default or production
webpackConfig.output.filename = 'scripts/[name].[hash].js';
webpackConfig.output.sourceMapFilename = '[file].[hash].map';
webpackConfig.plugins.push(new ExtractTextPlugin('[name].[hash].css'));
webpackConfig.plugins.push(new ExtractTextPlugin('styles/[name].[hash].css'));
webpackConfig.plugins.push(new webpack.optimize.UglifyJsPlugin());
webpackConfig.plugins.push(new OptimizeCssAssetsPlugin({
cssProcessor: cssnano,
@@ -139,4 +160,12 @@ if ( SAGE_ENV === 'development' ) {
}));
}
if (process.env.NODE_ENV === 'development') {
// development settings when called from the node.js api by the watch script
webpackConfig.entry = addHotMiddleware(webpackConfig.entry);
webpackConfig.output.pathinfo = true;
webpackConfig.debug = true;
webpackConfig.devtool = 'source-map';
}
module.exports = webpackConfig;