Skip to content

Commit

Permalink
feat(angular): update to angular 7
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightapes committed Oct 24, 2018
1 parent 2fa1178 commit 77224da
Show file tree
Hide file tree
Showing 3 changed files with 3,901 additions and 2,170 deletions.
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
sudo: required
language: node_js
cache: yarn
addons:
chrome: stable
cache: yarn
notifications:
email: false
node_js:
- '8'
before_install:
- npm i -g npm@3 # fix for https://github.com/npm/npm/issues/19222
after_success:
- yarn build
- cp .git dist/ -r # required by semantic release
- cp README.md dist/
- cp .git dist/.git/ -r # required by semantic release
- cd dist
- yarn install
- yarn semantic-release
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"
- /^v\d+\.\d+\.\d+$/
51 changes: 29 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"test-watch": "karma start --no-single-run --auto-watch",
"build": "tslint --project . && ng-packagr -p package.json",
"commit": "tslint --project . && npm test && git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
Expand All @@ -29,42 +30,48 @@
"@angular/forms": ">= 2.0.0"
},
"devDependencies": {
"@angular/common": "^5.2.8",
"@angular/compiler": "^5.2.8",
"@angular/compiler-cli": "^5.2.8",
"@angular/core": "^5.2.8",
"@angular/forms": "^5.2.8",
"@angular/platform-browser": "^5.2.8",
"@angular/platform-browser-dynamic": "^5.2.8",
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/compiler-cli": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@types/google-libphonenumber": "^7.4.10",
"@types/jasmine": "2.5.46",
"@types/node": "^9.4.7",
"@types/jasmine": "2.8.9",
"@types/node": "^10.12.0",
"codelyzer": "^4.2.1",
"commitizen": "2.9.6",
"commitizen": "3.0.4",
"cz-conventional-changelog": "2.1.0",
"jasmine-core": "2.5.2",
"karma": "2.0.2",
"jasmine-core": "3.2.1",
"karma": "3.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "1.0.2",
"karma-jasmine": "1.1.2",
"karma-typescript": "^3.0.12",
"ng-packagr": "^2.2.0",
"rxjs": "^5.2.0",
"semantic-release": "8.2.3",
"ng-packagr": "^4.1.1",
"rxjs": "^6.3.3",
"semantic-release": "15.10.5",
"travis-deploy-once": "^5.0.7",
"tsickle": "^0.33.1",
"tslib": "^1.9.3",
"tslint": "^5.9.1",
"typescript": "2.6.2",
"zone.js": "^0.8.5"
"typescript": "3.1.3",
"zone.js": "^0.8.26"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"google-libphonenumber": "^3.1.1"
"google-libphonenumber": "^3.1.15"
},
"ngPackage": {
"lib": {
"entryFile": "./src/public_api.ts"
}
},
"whitelistedNonPeerDependencies": [
"google-libphonenumber"
]
}
}
}
Loading

0 comments on commit 77224da

Please sign in to comment.