Skip to content

Commit

Permalink
ci(package.json): Update release configuration to fix npm publishing …
Browse files Browse the repository at this point in the history
…failure
  • Loading branch information
dalelotts committed Apr 5, 2018
1 parent 4a2b9dd commit 914b0ee
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
/out-tsc
/tmp
/typings
dist.tgz
npm-debug.log
testem.log
Thumbs.db
34 changes: 21 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 8 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"lint": "ng lint",
"ng": "ng",
"start": "ng serve",
"test": "ng lint && ng test --single-run --code-coverage && ng build --prod && npm run build:lib ",
"test": "ng lint && ng test --single-run --code-coverage && ng build --prod && npm run build:lib",
"test:tdd": "ng test",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
Expand Down Expand Up @@ -72,6 +72,7 @@
"codelyzer": "~4.2.1",
"core-js": "^2.5.4",
"coveralls": "^3.0.0",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^2.0.0",
Expand All @@ -88,31 +89,17 @@
"scss-bundle": "^2.1.3",
"semantic-release": "^15.1.5",
"stylelint": "^9.2.0",
"travis-deploy-once": "^4.4.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "~2.6.2",
"zone.js": "^0.8.25",
"travis-deploy-once": "^4.4.1"
"zone.js": "^0.8.25"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"pkgRoot": "dist"
},
{
"path": "@semantic-release/github",
"assets": [
"dist/*.zip",
"dist/*.tar.gz"
]
}
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
"pkgRoot": "dist",
"assets": [
"dist/*.zip",
"dist/*.tar.gz"
]
}
}

0 comments on commit 914b0ee

Please sign in to comment.