Enhance/plugin apis (#3355)

* improve(plugin): support autoFocus option for main ui frame

* improve(plugin): make single selected block as current block

* improve(api): get selected blocks

* improve(plugin): support call built-in command from api

* fix(plugin): sanitize key of shortcut id

* improve(plugin): add invoke built-in command api &

* fix(editor): overwritten class of collapsed block

* improve(plugin): add `getStateFromStore` api

* chore: build libs core

Co-authored-by: Tienson Qin <tiensonqin@gmail.com>
This commit is contained in:
Charlie
2021-12-08 10:43:58 +08:00
committed by GitHub
parent d9452bd739
commit 9029c632ef
14 changed files with 242 additions and 118 deletions

View File

@@ -2,31 +2,39 @@ const webpack = require('webpack')
const path = require('path')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
module.exports = {
entry: './src/LSPlugin.core.ts',
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
module.exports = (env, argv) => {
const config = {
entry: './src/LSPlugin.core.ts',
devtool: 'eval',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
plugins: [
new webpack.ProvidePlugin({
process: 'process/browser',
}),
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
plugins: [
new webpack.ProvidePlugin({
process: 'process/browser',
}),
// new BundleAnalyzerPlugin()
],
output: {
library: 'LSPlugin',
libraryTarget: 'umd',
filename: 'lsplugin.core.js',
path: path.resolve(__dirname, '../resources/js'),
},
output: {
library: 'LSPlugin',
libraryTarget: 'umd',
filename: 'lsplugin.core.js',
path: path.resolve(__dirname, '../resources/js'),
},
}
if (argv.mode === 'production') {
delete config.devtool
config.plugins.push(new BundleAnalyzerPlugin())
}
return config
}