Skip to content

Commit

Permalink
update docs config with new url and name
Browse files Browse the repository at this point in the history
  • Loading branch information
mimiflynn committed Oct 28, 2024
1 parent 84ebb7d commit 3036532
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# MessageBroker

![Lifecycle Active](https://badgen.net/badge/Lifecycle/Active/green)
![NPM](https://img.shields.io/npm/l/@morgan-stanley/message-broker)
![npm](https://img.shields.io/npm/v/@morgan-stanley/message-broker)
Expand All @@ -8,7 +9,7 @@

MessageBroker provides framework agnostic, decoupled communication between publishers and subscribers. This library is fully type safe and works in both browsers and Node.js. MessageBroker is built ontop of [RxJS](https://rxjs.dev/guide/overview) providing access to observables and a comprehensive list of operators.

Full documentation can be found at http://opensource.morganstanley.com/message-broker/
Full documentation can be found at https://morganstanley.github.io/message-broker/

## Basic Usage

Expand Down
8 changes: 4 additions & 4 deletions site/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ const { plugins } = require('./src/config/base-gatsby-plugins');

module.exports = {
siteMetadata: {
title: `Project GitHub Pages Template`,
description: `Morgan Stanley Open Source Software`,
siteUrl: 'http://opensource.morganstanley.com',
title: `Message Broker`,
description: `a Typescript library which aims to provide asynchronous communication between typescript components`,
siteUrl: 'https://morganstanley.github.io',
documentationUrl: false,
// documentationUrl: url-of.documentation.site,
},
pathPrefix: `/`, // put GitHub project url slug here e.g. github.com/morganstanley/<project url slug>
pathPrefix: `/message-broker`, // put GitHub project url slug here e.g. github.com/morganstanley/<project url slug>
plugins,
};
15 changes: 7 additions & 8 deletions site/package-lock.json

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

2 changes: 1 addition & 1 deletion site/src/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const Header = ({ location, links }) => {
return (
<div className="content">
<h1 className="logo">
<Link className="logo-link" to={`//opensource.morganstanley.com`}>
<Link className="logo-link" to={`//morganstanley.github.io`}>
<StaticImage
width={267}
src="../images/logo-black.png"
Expand Down

0 comments on commit 3036532

Please sign in to comment.