chore: bump version 0.4.7-alpha-1

This commit is contained in:
Bill Church 2022-07-30 11:19:24 -04:00
parent ec809d829a
commit 8c8ca7da4a
3 changed files with 3 additions and 6 deletions

View file

@ -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" ]

View file

@ -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;
}
);

View file

@ -1,6 +1,6 @@
{
"name": "webssh2",
"version": "0.4.6",
"version": "0.4.7-alpha-1",
"ignore": [
".gitignore"
],