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 WORKDIR /usr/src
COPY app/ /usr/src/ COPY app/ /usr/src/
RUN npm install --production RUN npm install --omit=dev
EXPOSE 2222/tcp EXPOSE 2222/tcp
ENTRYPOINT [ "/usr/local/bin/node", "index.js" ] ENTRYPOINT [ "/usr/local/bin/node", "index.js" ]

View file

@ -171,10 +171,7 @@ socket.on('connect', () => {
socket.on( socket.on(
'setTerminalOpts', 'setTerminalOpts',
(data: { cursorBlink: any; scrollback: any; tabStopWidth: any; bellStyle: any }) => { (data: { cursorBlink: any; scrollback: any; tabStopWidth: any; bellStyle: any }) => {
term.options.cursorBlink = data.cursorBlink; term.options = data;
term.options.scrollback = data.scrollback;
term.options.tabStopWidth = data.tabStopWidth;
term.options.bellStyle = data.bellStyle;
} }
); );

View file

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