Skip to content

Commit

Permalink
fix: tslib dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
panaaj committed Jun 23, 2023
1 parent 35af684 commit 17a53eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@signalk/freeboard-sk",
"version": "2.0.0",
"version": "2.0.1",
"description": "Openlayers chart plotter implementation for Signal K",
"keywords": [
"signalk-webapp",
Expand Down Expand Up @@ -40,7 +40,8 @@
],
"license": "Apache-v2",
"dependencies": {
"socket.io-client": "^4.6.0"
"socket.io-client": "^4.6.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.1",
Expand Down Expand Up @@ -90,7 +91,6 @@
"signalk-worker-angular": "^1.1.4",
"simplify-ts": "^1.0.2",
"ts-node": "~7.0.0",
"tslib": "^2.0.0",
"typescript": "~4.7.3",
"zone.js": "~0.11.4"
}
Expand Down
6 changes: 3 additions & 3 deletions src/app/app.info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export class AppInfo extends Info {
this.name = 'Freeboard';
this.shortName = 'freeboard';
this.description = `Signal K Chart Plotter.`;
this.version = '2.0.0';
this.version = '2.0.1';
this.url = 'https://github.com/signalk/freeboard-sk';
this.logo = './assets/img/app_logo.png';

Expand Down Expand Up @@ -764,8 +764,8 @@ export class AppInfo extends Info {
Freeboard-SK version 2 is for use with Signal K server v2 that implements both the
<b>Course API</b> and <b>Resources API</b>.
<br>&nbsp;<br>
Check out <a href="https://github.com/SignalK/freeboard-sk/wiki/Signal-K---Freeboard-SK-Version-2" target="help">
FAQ</a> for more details.
Please review the <a href="https://github.com/SignalK/freeboard-sk/wiki/Signal-K---Freeboard-SK-Version-2" target="help">
FAQ</a> for details about important changes.
`
}
]
Expand Down

0 comments on commit 17a53eb

Please sign in to comment.