Revert "Compress an assets"

This reverts commit 4c2a3d8df0.
This commit is contained in:
syuilo 2017-05-17 00:36:04 +09:00
parent 4c2a3d8df0
commit 2d485730f0
6 changed files with 5 additions and 19 deletions

View file

@ -67,7 +67,6 @@
"@types/websocket": "0.0.33",
"chai": "3.5.0",
"chai-http": "3.0.0",
"compression-webpack-plugin": "0.4.0",
"css-loader": "0.28.1",
"event-stream": "3.3.4",
"gulp": "3.9.1",
@ -88,7 +87,7 @@
"stylus-loader": "3.0.1",
"swagger-jsdoc": "1.9.4",
"tslint": "5.2.0",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#8f4b45f4f814c04918382949b4bcaf7a8d910281",
"webpack": "2.5.1"
},
"dependencies": {

View file

@ -2,4 +2,4 @@ extends ../base
block head
meta(name='viewport' content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no')
script(src=`/assets/auth.${version}.ja.js.gz` async defer)
script(src=`/assets/auth.${version}.ja.js` async defer)

View file

@ -16,7 +16,7 @@ const app = isMobile ? 'mobile' : 'desktop';
// Load app script
const script = document.createElement('script');
script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js.gz`);
script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js`);
script.setAttribute('async', 'true');
script.setAttribute('defer', 'true');
head.appendChild(script);

View file

@ -1,4 +1,4 @@
extends ../base
block head
script(src=`/assets/dev.${version}.ja.js.gz` async defer)
script(src=`/assets/dev.${version}.js` async defer)

View file

@ -1,9 +0,0 @@
/**
* Compressor
*/
const CompressionPlugin = require('compression-webpack-plugin');
export default () => new CompressionPlugin({
deleteOriginalAssets: true
});

View file

@ -1,8 +1,6 @@
import * as webpack from 'webpack';
const StringReplacePlugin = require('string-replace-webpack-plugin');
import constant from './const';
import compression from './compression';
const env = process.env.NODE_ENV;
const isProduction = env === 'production';
@ -14,10 +12,8 @@ export default () => {
];
if (isProduction) {
plugins.push(new webpack.optimize.UglifyJsPlugin());
//plugins.push(new webpack.optimize.UglifyJsPlugin());
}
plugins.push(compression());
return plugins;
};