Archived
1
0

Move string replacements for node-pty to general

This commit is contained in:
Asher
2019-02-25 11:49:09 -06:00
parent 80d9baadc0
commit 1e55736c69
2 changed files with 22 additions and 33 deletions

View File

@ -1,39 +1,10 @@
const path = require("path");
const webpack = require("webpack");
const merge = require("webpack-merge");
const StringReplacePlugin = require("string-replace-webpack-plugin");
const HappyPack = require("happypack");
module.exports = merge({
devtool: "none",
mode: "development",
module: {
rules: [
{
test: /@oclif\/command\/lib\/index\.js/,
loader: StringReplacePlugin.replace({
replacements: [
{
// This is required otherwise it attempts to require("package.json")
pattern: /checkNodeVersion\(\)\;/,
replacement: () => / /,
}
]
}),
},
{
test: /node\-pty\/lib\/index\.js/,
loader: StringReplacePlugin.replace({
replacements: [
{
pattern: /exports\.native.*;/,
replacement: () => "exports.native = null;",
}
]
}),
},
],
},
output: {
filename: "cli.js",
path: path.join(__dirname, "./out"),