Renaming webpack/config to webpack/app

This commit is contained in:
Nicolas Gotchac 2016-11-28 16:06:27 +01:00
parent 50530aec37
commit d41c60da54
3 changed files with 3 additions and 3 deletions

View File

@ -26,11 +26,11 @@
],
"scripts": {
"build": "npm run build:lib && npm run build:dll && npm run build:app",
"build:app": "webpack --config webpack/config --progress",
"build:app": "webpack --config webpack/app --progress",
"build:lib": "webpack --config webpack/libraries --progress",
"build:dll": "webpack --config webpack/vendor --progress",
"ci:build": "npm run ci:build:lib && npm run ci:build:dll && npm run ci:build:app",
"ci:build:app": "NODE_ENV=production webpack --config webpack/config",
"ci:build:app": "NODE_ENV=production webpack --config webpack/app",
"ci:build:lib": "NODE_ENV=production webpack --config webpack/libraries",
"ci:build:dll": "NODE_ENV=production webpack --config webpack/vendor",
"ci:build:npm": "NODE_ENV=production webpack --config webpack/npm",

View File

@ -22,7 +22,7 @@ const http = require('http');
const express = require('express');
const ProgressBar = require('progress');
const webpackConfig = require('./config');
const webpackConfig = require('./app');
const Shared = require('./shared');
let progressBar = { update: () => {} };