update auto-build script

pull/9/head
undefined 4 years ago
parent 19cf1a5304
commit c389d20c51

@ -19,8 +19,7 @@ jobs:
path: .uibuild path: .uibuild
- run: | - run: |
yarn yarn
yarn build yarn build:production
yarn pack:production
- uses: actions/upload-artifact@v1 - uses: actions/upload-artifact@v1
with: with:
name: app.js name: app.js

@ -1,4 +1,5 @@
/* eslint-disable import/no-extraneous-dependencies */ /* eslint-disable import/no-extraneous-dependencies */
const path = require('path');
const webpack = require('webpack'); const webpack = require('webpack');
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin'); const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin');
const { root } = require('./utils'); const { root } = require('./utils');
@ -20,6 +21,9 @@ const build = async (type) => {
new FriendlyErrorsPlugin({ new FriendlyErrorsPlugin({
clearConsole: false, clearConsole: false,
}), }),
new webpack.ProvidePlugin({
saslprep: path.resolve(__dirname, 'node_modules/saslprep/index.js'),
}),
], ],
}; };
const compiler = webpack(config); const compiler = webpack(config);

Loading…
Cancel
Save