feat: 增加 cert:generate 和 arduino:install 脚本
This commit is contained in:
13
webpack.dev.cjs
Normal file
13
webpack.dev.cjs
Normal file
@@ -0,0 +1,13 @@
|
||||
const common = require('./webpack.common.cjs');
|
||||
const { merge } = require('webpack-merge');
|
||||
const ESLintPlugin = require('eslint-webpack-plugin');
|
||||
|
||||
|
||||
module.exports = merge(common, {
|
||||
mode: 'development',
|
||||
plugins: [
|
||||
new ESLintPlugin({
|
||||
context: process.cwd()
|
||||
})
|
||||
]
|
||||
});
|
||||
Reference in New Issue
Block a user