mirror of
https://github.com/coder/code-server.git
synced 2024-12-05 07:13:06 +08:00
dc2253e718
* Replace evaluations with proxies and messages * Return proxies synchronously Otherwise events can be lost. * Ensure events cannot be missed * Refactor remaining fills * Use more up-to-date version of util For callbackify. * Wait for dispose to come back before removing This prevents issues with the "done" event not always being the last event fired. For example a socket might close and then end, but only if the caller called end. * Remove old node-pty tests * Fix emitting events twice on duplex streams * Preserve environment when spawning processes * Throw a better error if the proxy doesn't exist * Remove rimraf dependency from ide * Update net.Server.listening * Use exit event instead of killed Doesn't look like killed is even a thing. * Add response timeout to server * Fix trash * Require node-pty & spdlog after they get unpackaged This fixes an error when running in the binary. * Fix errors in down emitter preventing reconnecting * Fix disposing proxies when nothing listens to "error" event * Refactor event tests to use jest.fn() * Reject proxy call when disconnected Otherwise it'll wait for the timeout which is a waste of time since we already know the connection is dead. * Use nbin for binary packaging * Remove additional module requires * Attempt to remove require for local bootstrap-fork * Externalize fsevents
45 lines
971 B
JavaScript
45 lines
971 B
JavaScript
const path = require("path");
|
|
const webpack = require("webpack");
|
|
const merge = require("webpack-merge");
|
|
|
|
const root = path.resolve(__dirname, "../..");
|
|
|
|
module.exports = merge(
|
|
require(path.join(root, "scripts/webpack.node.config.js"))({
|
|
// Config options.
|
|
}), {
|
|
output: {
|
|
filename: "cli.js",
|
|
path: path.join(__dirname, "out"),
|
|
libraryTarget: "commonjs",
|
|
},
|
|
mode: "production",
|
|
node: {
|
|
console: false,
|
|
global: false,
|
|
process: false,
|
|
Buffer: false,
|
|
__filename: false,
|
|
__dirname: false,
|
|
setImmediate: false
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"node-pty": "node-pty-prebuilt",
|
|
},
|
|
},
|
|
externals: {
|
|
"tslib": "commonjs tslib",
|
|
"nbin": "commonjs nbin",
|
|
"fsevents": "fsevents",
|
|
},
|
|
entry: "./packages/server/src/cli.ts",
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
"process.env.BUILD_DIR": `"${__dirname.replace(/\\/g, "\\\\")}"`,
|
|
"process.env.CLI": `"${process.env.CLI ? "true" : "false"}"`,
|
|
}),
|
|
],
|
|
},
|
|
);
|