Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit ce1f2cf

Browse files
committed
chore: fix travis + doc
1 parent 52d7f4e commit ce1f2cf

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dist: trusty
22
sudo: required
33
language: node_js
44
node_js:
5-
- "8.11.1"
5+
- "10.15.1"
66
os:
77
- linux
88
env:

DEVELOPER.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ ncu -u
5656
rm -rf node_modules && npm install
5757
```
5858

59+
If you want to update angular, use the cli:
60+
61+
```bash
62+
ng update @angular/cli @angular/core
63+
```
64+
5965
## Testing
6066

6167
These tools are configured for specific conventions described below.

demo/src/app/getting-started.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Component } from '@angular/core';
55
templateUrl: 'getting-started.component.html'
66
})
77
export class GettingStartedComponent {
8-
nodeVersion = '8.9';
8+
nodeVersion = '10';
99
npmVersion = '6';
1010
angularCliVersion = '8.Y.Z';
1111
npmInstallSnippet = `

demo/src/app/welcome.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ import { Component } from '@angular/core';
77
})
88
export class WelcomeComponent {
99
angularjsDataTablesVersion = 'v0.Y.Z';
10-
angularDataTablesVersion = 'v7.Y.Z';
10+
angularDataTablesVersion = 'v8.Y.Z';
1111
}

0 commit comments

Comments
 (0)