Merge pull request #945 from waku-org/ci/change-domain

This commit is contained in:
fryorcraken.eth 2022-09-11 00:55:46 +10:00 committed by GitHub
commit 9c43905444
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 8 deletions

View File

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- `addPeerToAddressBook` is now async. - `addPeerToAddressBook` is now async.
- API Docs moved to https://js.waku.org/
## [0.26.0] - 2022-09-08 ## [0.26.0] - 2022-09-08

View File

@ -11,7 +11,7 @@ A JavaScript implementation of the [Waku v2 protocol](https://rfc.vac.dev/spec/1
- [Quick start](https://docs.wakuconnect.dev/docs/quick_start/) - [Quick start](https://docs.wakuconnect.dev/docs/quick_start/)
- [Full documentation](https://docs.wakuconnect.dev/) - [Full documentation](https://docs.wakuconnect.dev/)
- [API documentation (`master` branch)](https://js-waku.wakuconnect.dev/) - [API documentation (`master` branch)](https://js.waku.org/)
- [Waku Connect](https://wakuconnect.dev/) - [Waku Connect](https://wakuconnect.dev/)
- [Waku](https://wakunetwork.com/) - [Waku](https://wakunetwork.com/)
- [Vac](https://vac.dev/) - [Vac](https://vac.dev/)

View File

@ -5,7 +5,7 @@ Configuration of CI builds executed under a Jenkins instance at https://ci.statu
# Website # Website
The `Jenkinsfile.gh-pages` file builds the documentation site with this job: The `Jenkinsfile.gh-pages` file builds the documentation site with this job:
https://ci.status.im/job/website/job/js-waku.wakuconnect.dev/ https://ci.infra.status.im/job/website/job/js.waku.org/
And deploys it via `gh-pages` branch and [GitHub Pages](https://pages.github.com/) to: And deploys it via `gh-pages` branch and [GitHub Pages](https://pages.github.com/) to:
https://js-waku.wakuconnect.dev/ https://js.waku.org/

View File

@ -1,15 +1,16 @@
const { promisify } = require('util') import { promisify } from 'util'
const { publish } = require('gh-pages') import { publish } from 'gh-pages'
const ghpublish = promisify(publish)
/* fix for "Unhandled promise rejections" */ /* fix for "Unhandled promise rejections" */
process.on('unhandledRejection', err => { throw err }) process.on('unhandledRejection', err => { throw err })
const ghpublish = promisify(publish)
const Args = process.argv.slice(2) const Args = process.argv.slice(2)
const USE_HTTPS = Args[0] && Args[0].toUpperCase() === 'HTTPS' const USE_HTTPS = Args[0] && Args[0].toUpperCase() === 'HTTPS'
const branch = 'gh-pages' const branch = 'gh-pages'
const org = 'status-im' const org = 'waku-org'
const repo = 'js-waku' const repo = 'js-waku'
/* use SSH auth by default */ /* use SSH auth by default */
let repoUrl = USE_HTTPS let repoUrl = USE_HTTPS

View File

@ -77,7 +77,7 @@
"watch:test": "mocha --watch", "watch:test": "mocha --watch",
"doc": "run-s doc:*", "doc": "run-s doc:*",
"doc:html": "typedoc --treatWarningsAsErrors", "doc:html": "typedoc --treatWarningsAsErrors",
"doc:cname": "echo 'js-waku.wakuconnect.dev' > build/docs/CNAME", "doc:cname": "echo 'js.waku.org' > build/docs/CNAME",
"prepublish": "npm run build", "prepublish": "npm run build",
"deploy": "node ci/deploy.js", "deploy": "node ci/deploy.js",
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build" "reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"