Road to the MIT

This commit is contained in:
RainLoop Team 2022-08-31 18:15:45 +00:00
parent 13d05dc2ff
commit aa5d3fc89d
75 changed files with 392 additions and 2283 deletions

View file

@ -1,4 +1,4 @@
/* RainLoop Webmail (c) RainLoop Team | Licensed under AGPL 3 */
/* RainLoop Webmail (c) RainLoop Team | Licensed under MIT */
const webpack = require('webpack');
const gutil = require('gulp-util');
@ -34,5 +34,5 @@ const webpackCallback = (done) => (err, stats) => {
};
exports.webpack = (done) => {
webpack(webpackCfgBuilder(config.paths.staticJS, !config.community, 'production'), webpackCallback(done));
webpack(webpackCfgBuilder(config.paths.staticJS, 'production'), webpackCallback(done));
};