Clean up ✨
This commit is contained in:
parent
f565122c4c
commit
134be39d38
44
gulpfile.ts
44
gulpfile.ts
|
@ -15,9 +15,7 @@ import * as webpack from 'webpack-stream';
|
||||||
import cssnano = require('gulp-cssnano');
|
import cssnano = require('gulp-cssnano');
|
||||||
import * as uglify from 'gulp-uglify';
|
import * as uglify from 'gulp-uglify';
|
||||||
import pug = require('gulp-pug');
|
import pug = require('gulp-pug');
|
||||||
import git = require('git-last-commit');
|
|
||||||
import * as rimraf from 'rimraf';
|
import * as rimraf from 'rimraf';
|
||||||
import prominence = require('prominence');
|
|
||||||
import * as chalk from 'chalk';
|
import * as chalk from 'chalk';
|
||||||
import imagemin = require('gulp-imagemin');
|
import imagemin = require('gulp-imagemin');
|
||||||
import * as rename from 'gulp-rename';
|
import * as rename from 'gulp-rename';
|
||||||
|
@ -56,9 +54,6 @@ gulp.task('build:ts', () =>
|
||||||
tsProject
|
tsProject
|
||||||
.src()
|
.src()
|
||||||
.pipe(tsProject())
|
.pipe(tsProject())
|
||||||
.pipe(babel({
|
|
||||||
presets: ['es2015', 'stage-3']
|
|
||||||
}))
|
|
||||||
.pipe(gulp.dest('./built/'))
|
.pipe(gulp.dest('./built/'))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -127,41 +122,16 @@ gulp.task('build:client', [
|
||||||
'copy:client'
|
'copy:client'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
gulp.task('build:client:scripts', () => new Promise(async (ok) => {
|
gulp.task('build:client:scripts', () =>
|
||||||
// Get commit info
|
|
||||||
const commit = await prominence(git).getLastCommit();
|
|
||||||
|
|
||||||
let stream = webpack(require('./webpack.config')(commit, env), require('webpack'));
|
|
||||||
|
|
||||||
// TODO: remove this block
|
|
||||||
if (isProduction) {
|
|
||||||
stream = stream
|
|
||||||
// ↓ https://github.com/mishoo/UglifyJS2/issues/448
|
|
||||||
.pipe(babel({
|
|
||||||
presets: ['es2015']
|
|
||||||
}))
|
|
||||||
.pipe(uglify());
|
|
||||||
}
|
|
||||||
|
|
||||||
let entryPointStream = gulp.src('./src/web/app/client/script.js');
|
|
||||||
|
|
||||||
if (isProduction) {
|
|
||||||
entryPointStream = entryPointStream
|
|
||||||
// ↓ https://github.com/mishoo/UglifyJS2/issues/448
|
|
||||||
.pipe(babel({
|
|
||||||
presets: ['es2015']
|
|
||||||
}))
|
|
||||||
.pipe(uglify());
|
|
||||||
}
|
|
||||||
|
|
||||||
es.merge(
|
es.merge(
|
||||||
stream.pipe(gulp.dest('./built/web/resources/')) as any,
|
webpack(require('./webpack.config'), require('webpack'))
|
||||||
entryPointStream.pipe(gulp.dest('./built/web/resources/client/')) as any
|
.pipe(gulp.dest('./built/web/resources/')) as any,
|
||||||
|
gulp.src('./src/web/app/client/script.js')
|
||||||
|
.pipe(isProduction ? uglify() : gutil.noop())
|
||||||
|
.pipe(gulp.dest('./built/web/resources/client/')) as any
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
ok();
|
|
||||||
}));
|
|
||||||
|
|
||||||
gulp.task('build:client:styles', () =>
|
gulp.task('build:client:styles', () =>
|
||||||
gulp.src('./src/web/app/init.css')
|
gulp.src('./src/web/app/init.css')
|
||||||
.pipe(isProduction
|
.pipe(isProduction
|
||||||
|
|
|
@ -88,7 +88,6 @@
|
||||||
"express": "4.14.1",
|
"express": "4.14.1",
|
||||||
"file-type": "4.1.0",
|
"file-type": "4.1.0",
|
||||||
"fuckadblock": "3.2.1",
|
"fuckadblock": "3.2.1",
|
||||||
"git-last-commit": "0.2.0",
|
|
||||||
"glob": "7.1.1",
|
"glob": "7.1.1",
|
||||||
"gm": "1.23.0",
|
"gm": "1.23.0",
|
||||||
"gulp": "3.9.1",
|
"gulp": "3.9.1",
|
||||||
|
@ -140,6 +139,7 @@
|
||||||
"ts-node": "2.1.0",
|
"ts-node": "2.1.0",
|
||||||
"tslint": "4.4.2",
|
"tslint": "4.4.2",
|
||||||
"typescript": "2.2.1",
|
"typescript": "2.2.1",
|
||||||
|
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
|
||||||
"uuid": "3.0.1",
|
"uuid": "3.0.1",
|
||||||
"velocity-animate": "1.4.3",
|
"velocity-animate": "1.4.3",
|
||||||
"vhost": "3.0.2",
|
"vhost": "3.0.2",
|
||||||
|
|
|
@ -8,7 +8,6 @@ const api = require('./common/scripts/api');
|
||||||
const signout = require('./common/scripts/signout');
|
const signout = require('./common/scripts/signout');
|
||||||
const generateDefaultUserdata = require('./common/scripts/generate-default-userdata');
|
const generateDefaultUserdata = require('./common/scripts/generate-default-userdata');
|
||||||
const mixins = require('./common/mixins');
|
const mixins = require('./common/mixins');
|
||||||
const checkForUpdate = require('./common/scripts/check-for-update');
|
|
||||||
require('./common/tags');
|
require('./common/tags');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -50,9 +49,6 @@ try {
|
||||||
Storage.prototype.setItem = () => { }; // noop
|
Storage.prototype.setItem = () => { }; // noop
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for Update
|
|
||||||
checkForUpdate();
|
|
||||||
|
|
||||||
// ユーザーをフェッチしてコールバックする
|
// ユーザーをフェッチしてコールバックする
|
||||||
module.exports = callback => {
|
module.exports = callback => {
|
||||||
// Get cached account data
|
// Get cached account data
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
module.exports = () => {
|
|
||||||
fetch('/api:meta').then(res => {
|
|
||||||
res.json().then(meta => {
|
|
||||||
if (meta.commit.hash !== VERSION) {
|
|
||||||
if (window.confirm('新しいMisskeyのバージョンがあります。更新しますか?\r\n(このメッセージが繰り返し表示される場合は、サーバーにデータがまだ届いていない可能性があるので、少し時間を置いてから再度お試しください)')) {
|
|
||||||
location.reload(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
|
|
@ -1,9 +1,12 @@
|
||||||
|
/**
|
||||||
|
* webpack config
|
||||||
|
*/
|
||||||
|
|
||||||
import * as webpack from 'webpack';
|
import * as webpack from 'webpack';
|
||||||
const StringReplacePlugin = require('string-replace-webpack-plugin');
|
const StringReplacePlugin = require('string-replace-webpack-plugin');
|
||||||
|
|
||||||
const constants = require('./src/const.json');
|
const constants = require('./src/const.json');
|
||||||
|
|
||||||
module.exports = (commit, env) => {
|
const env = process.env.NODE_ENV;
|
||||||
const isProduction = env === 'production';
|
const isProduction = env === 'production';
|
||||||
|
|
||||||
const pack: webpack.Configuration = {
|
const pack: webpack.Configuration = {
|
||||||
|
@ -46,27 +49,20 @@ module.exports = (commit, env) => {
|
||||||
test: /\.styl$/,
|
test: /\.styl$/,
|
||||||
exclude: /node_modules/,
|
exclude: /node_modules/,
|
||||||
use: [
|
use: [
|
||||||
{
|
{ loader: 'style-loader' },
|
||||||
loader: 'style-loader'
|
{ loader: 'css-loader' },
|
||||||
},
|
{ loader: 'stylus-loader' }
|
||||||
{
|
|
||||||
loader: 'css-loader'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
loader: 'stylus-loader'
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
VERSION: JSON.stringify(commit ? commit.hash : null),
|
|
||||||
CONFIG: {
|
CONFIG: {
|
||||||
themeColor: JSON.stringify(constants.themeColor)
|
themeColor: JSON.stringify(constants.themeColor)
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
new StringReplacePlugin(),
|
new StringReplacePlugin()
|
||||||
],
|
],
|
||||||
output: {
|
output: {
|
||||||
filename: '[name]/script.js'
|
filename: '[name]/script.js'
|
||||||
|
@ -74,10 +70,7 @@ module.exports = (commit, env) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (isProduction) {
|
if (isProduction) {
|
||||||
// TODO.
|
pack.plugins.push(new webpack.optimize.UglifyJsPlugin());
|
||||||
// see https://github.com/webpack/webpack/issues/2545
|
|
||||||
//pack.plugins.push(new Webpack.optimize.UglifyJsPlugin())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return pack;
|
module.exports = pack;
|
||||||
};
|
|
||||||
|
|
Loading…
Reference in New Issue