Skip to content

Commit

Permalink
fix(security): Update some dependency versions (#48)
Browse files Browse the repository at this point in the history
- fix dependencies versions from npm audit
- update angular.json config
  • Loading branch information
merlosy authored Feb 15, 2020
1 parent 0034ff6 commit a726c63
Show file tree
Hide file tree
Showing 6 changed files with 8,700 additions and 7,113 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dist: trusty
sudo: required
language: node_js
node_js:
- '10'
- '12'
cache: npm
os:
- linux
Expand All @@ -20,7 +20,7 @@ before_install:
# Install latest chrome.
- export CHROME_BIN=chromium-browser
install:
- npm install
- npm ci

jobs:
include:
Expand Down
7 changes: 4 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"newProjectRoot": "projects",
"projects": {
"demo": {
"root": "apps/demo/",
"root": "apps/demo",
"sourceRoot": "apps/demo/src",
"projectType": "application",
"prefix": "app",
Expand Down Expand Up @@ -97,7 +97,8 @@
}
},
"demo-e2e": {
"root": "apps/demo-e2e/",
"root": "apps/demo-e2e",
"sourceRoot": "apps/demo-e2e/src",
"projectType": "application",
"architect": {
"e2e": {
Expand All @@ -120,7 +121,7 @@
}
},
"demo-packaged": {
"root": "apps/demo/",
"root": "apps/demo-packaged",
"sourceRoot": "apps/demo/src",
"projectType": "application",
"prefix": "app",
Expand Down
13 changes: 13 additions & 0 deletions apps/demo-packaged/tsconfig.packaged.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../../tsconfig.packaged.json",
"compilerOptions": {
"outDir": "../../dist/apps/demo-packaged"
},
"include": [
"../demo/**/*.ts"
],
"exclude": [
"../demo/src/test.ts",
"../demo/**/*.spec.ts"
]
}
Loading

0 comments on commit a726c63

Please sign in to comment.