Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(websocket): bump ts-node to fix startup error #22563

Merged
merged 1 commit into from
Jan 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/superset-websocket.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
persist-credentials: false
- name: Install dependencies
working-directory: ./superset-websocket
run: npm install
run: npm ci
- name: lint
working-directory: ./superset-websocket
run: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion superset-websocket/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.15.5
v16.9.1
2 changes: 1 addition & 1 deletion superset-websocket/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ In addition to periodic socket connection cleanup, the internal _channels_ regis

Install dependencies:
```
npm install
npm ci
```

## WebSocket Server Configuration
Expand Down
218 changes: 204 additions & 14 deletions superset-websocket/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion superset-websocket/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^9.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
Expand Down