mirror of
https://github.com/mattermost/focalboard.git
synced 2025-01-11 18:13:52 +02:00
f1b8d88d6b
* Improving mattermost auth implementation * Making mattermost-auth based on shared database access * Reverting unneeded changes in the config.json file * Fixing tiny problems * Removing the need of using the mattermost session token * Fixing some bugs and allowing to not-bind the server to any port * Small fix to correctly get the templates * Adding the mattermost-plugin code inside focalboard repo * Adding a not working code part of the cluster websocket communication * Updating the mattermost version * Adding the cluster messages for the websockets * Updating to the new node version * Making it compatible with S3 * Addressing some tiny problems * Fixing server tests * Adds support for MySQL migrations and initialization Co-authored-by: Miguel de la Cruz <miguel@mcrx.me>
100 lines
2.8 KiB
JavaScript
100 lines
2.8 KiB
JavaScript
const exec = require('child_process').exec;
|
|
|
|
const path = require('path');
|
|
|
|
const PLUGIN_ID = require('../plugin.json').id;
|
|
|
|
const NPM_TARGET = process.env.npm_lifecycle_event; //eslint-disable-line no-process-env
|
|
let mode = 'production';
|
|
let devtool = '';
|
|
if (NPM_TARGET === 'debug' || NPM_TARGET === 'debug:watch') {
|
|
mode = 'development';
|
|
devtool = 'source-map';
|
|
}
|
|
|
|
const plugins = [];
|
|
if (NPM_TARGET === 'build:watch' || NPM_TARGET === 'debug:watch') {
|
|
plugins.push({
|
|
apply: (compiler) => {
|
|
compiler.hooks.watchRun.tap('WatchStartPlugin', () => {
|
|
// eslint-disable-next-line no-console
|
|
console.log('Change detected. Rebuilding webapp.');
|
|
});
|
|
compiler.hooks.afterEmit.tap('AfterEmitPlugin', () => {
|
|
exec('cd .. && make deploy-from-watch', (err, stdout, stderr) => {
|
|
if (stdout) {
|
|
process.stdout.write(stdout);
|
|
}
|
|
if (stderr) {
|
|
process.stderr.write(stderr);
|
|
}
|
|
});
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
entry: [
|
|
'./src/index.tsx',
|
|
],
|
|
resolve: {
|
|
modules: [
|
|
'src',
|
|
'node_modules',
|
|
path.resolve(__dirname),
|
|
],
|
|
extensions: ['*', '.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(js|jsx|ts|tsx)$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
cacheDirectory: true,
|
|
|
|
// Babel configuration is in babel.config.js because jest requires it to be there.
|
|
},
|
|
},
|
|
},
|
|
{
|
|
test: /\.(scss|css)$/,
|
|
use: [
|
|
'style-loader',
|
|
{
|
|
loader: 'css-loader',
|
|
},
|
|
{
|
|
loader: 'sass-loader',
|
|
options: {
|
|
sassOptions: {
|
|
includePaths: ['node_modules/compass-mixins/lib', 'sass'],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
externals: {
|
|
react: 'React',
|
|
redux: 'Redux',
|
|
'react-redux': 'ReactRedux',
|
|
'prop-types': 'PropTypes',
|
|
'react-bootstrap': 'ReactBootstrap',
|
|
'react-router-dom': 'ReactRouterDom',
|
|
},
|
|
output: {
|
|
devtoolNamespace: PLUGIN_ID,
|
|
path: path.join(__dirname, '/dist'),
|
|
publicPath: '/',
|
|
filename: 'main.js',
|
|
},
|
|
devtool,
|
|
mode,
|
|
plugins,
|
|
};
|