Skip to content

Commit

Permalink
Complete deployment set up
Browse files Browse the repository at this point in the history
  • Loading branch information
9inpachi committed Oct 5, 2020
1 parent b9e2551 commit 399ac77
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
9 changes: 6 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.1",
"version": "1.0.2-alpha.4",
"packages": [
"packages/*"
],
Expand All @@ -9,10 +9,13 @@
"*.md",
"*.txt",
"*.obj"
]
],
"message": "Release %s",
"conventionalCommits": true,
"changelogPreset": "git-raw-commits"
},
"run": {
"parallel": ""
"parallel": true
}
}
}
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
"private": true,
"scripts": {
"start": "lerna run start --parallel",
"publish": "lerna publish --git-remote upstream --conventional-commits --create-release github",
"install:dependencies": "lerna bootstrap"
"release": "lerna publish --git-remote upstream --create-release github",
"release:major": "lerna publish major --git-remote upstream --create-release github",
"release:minor": "lerna publish minor --git-remote upstream --create-release github",
"prerelease": "lerna publish --conventional-prerelease",
"install:dependencies": "lerna bootstrap",
"version": "git add ."
},
"devDependencies": {
"lerna": "^3.22.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/phoenix-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "phoenix-app",
"description": "Application for web-based experiment independent event display.",
"version": "1.0.1",
"version": "1.0.2-alpha.4",
"author": "Phoenix contributors (https://github.com/HSF/phoenix/graphs/contributors)",
"license": "Apache-2.0",
"homepage": "http://github.com/HSF/phoenix/tree/master/packages/phoenix-app#phoenix-application",
Expand All @@ -19,7 +19,7 @@
"deploy": "mv ../../docs/api-docs ../../api-docs && ng build --prod --output-path ../../docs --base-href \"/phoenix/\" && cp ../../docs/index.html ../../docs/404.html && mv ../../api-docs ../../docs/api-docs",
"test:coverage": "rm -rf ./coverage && ng test --no-watch --code-coverage",
"coveralls": "cat ./coverage/phoenix/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublishOnly": "npm run deploy"
"version": "npm run deploy"
},
"dependencies": {
"@angular/animations": "^10.0.14",
Expand All @@ -36,7 +36,7 @@
"coveralls": "^3.1.0",
"css-element-queries": "^1.2.3",
"ng5-slider": "^1.2.4",
"phoenix-event-display": "^1.0.1",
"phoenix-event-display": "^1.0.2-alpha.4",
"rxjs": "^6.6.2",
"three": "^0.120.0",
"tslib": "^2.0.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/phoenix-event-display/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phoenix-event-display",
"version": "1.0.1",
"version": "1.0.2-alpha.4",
"description": "API for web-based experiment independent event display.",
"main": "dist/index",
"types": "dist/index",
Expand All @@ -24,7 +24,7 @@
"build:umd": "npm run build && rollup -c rollup.conf.js",
"tsc-d": "tsc --declaration --emitDeclarationOnly --esModuleInterop --outFile dist/index.d.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run docs",
"version": "npm run prepare && npm run docs",
"docs": "node scripts/gen-api-docs.js"
},
"dependencies": {
Expand Down

0 comments on commit 399ac77

Please sign in to comment.