Skip to content

Commit 0d19634

Browse files
authored
Merge pull request #34 from christophercr/feature/angular-8-support
Feature/angular 8 support
2 parents 2a37d3d + 48606e0 commit 0d19634

File tree

156 files changed

+15996
-7181
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+15996
-7181
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
node_js:
3-
- "8"
43
- "10"
4+
- "12"
55

66
dist: trusty
77
sudo: false # better for performance
@@ -15,7 +15,7 @@ before_install:
1515
- AUTHOR_NAME="$(git log -1 $TRAVIS_COMMIT --pretty="%aN")"
1616
- echo $AUTHOR_NAME
1717
- export TZ=Europe/Brussels
18-
- npm i -g npm@6.4.1
18+
- npm i -g npm@6.9.0
1919
- NODE_VERSION="$(node -v)"
2020
- echo $NODE_VERSION
2121
# This ensures that we are authenticated without requiring to have an actual .npmrc file within the project
@@ -27,7 +27,8 @@ install:
2727
- mkdir -p $LOGS_DIR
2828
- touch $LOGS_DIR/build-perf.log
2929
- npm ci
30-
- npm run install:ci:demo
30+
- npm run install:ci:demo:ng-previous
31+
- npm run install:ci:demo:ng-latest
3132

3233
env:
3334
global:

RELEASE.md

Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

demo-app/e2e/src/app.po.ts renamed to demo-app/ng7/e2e/src/app.po.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { browser, by, element } from "protractor";
33

44
export class AppPage {
55
public navigateTo() {
6-
return browser.get("/") as Promise<string>;
6+
return browser.get("/") as Promise<any>;
77
}
88

99
public getTitleText() {

0 commit comments

Comments
 (0)