chore: bump version 0.4.7-alpha-1
This commit is contained in:
parent
ec809d829a
commit
8c8ca7da4a
3 changed files with 3 additions and 6 deletions
|
@ -2,6 +2,6 @@ FROM node:16-alpine
|
|||
|
||||
WORKDIR /usr/src
|
||||
COPY app/ /usr/src/
|
||||
RUN npm install --production
|
||||
RUN npm install --omit=dev
|
||||
EXPOSE 2222/tcp
|
||||
ENTRYPOINT [ "/usr/local/bin/node", "index.js" ]
|
||||
|
|
|
@ -171,10 +171,7 @@ socket.on('connect', () => {
|
|||
socket.on(
|
||||
'setTerminalOpts',
|
||||
(data: { cursorBlink: any; scrollback: any; tabStopWidth: any; bellStyle: any }) => {
|
||||
term.options.cursorBlink = data.cursorBlink;
|
||||
term.options.scrollback = data.scrollback;
|
||||
term.options.tabStopWidth = data.tabStopWidth;
|
||||
term.options.bellStyle = data.bellStyle;
|
||||
term.options = data;
|
||||
}
|
||||
);
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "webssh2",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7-alpha-1",
|
||||
"ignore": [
|
||||
".gitignore"
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue