Skip to content

Commit

Permalink
Move to a new org
Browse files Browse the repository at this point in the history
  • Loading branch information
wewei committed Mar 12, 2022
1 parent 0446edc commit 652fdc2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 20 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Observable Monad

[![build status](https://github.com/wewei/ts-monad-observable/actions/workflows/node.js.yml/badge.svg)](https://github.com/wewei/ts-monad-observable/actions/workflows/node.js.yml)
[![build status](https://github.com/ts-monad/observable/actions/workflows/node.js.yml/badge.svg)](https://github.com/ts-monad/observable/actions/workflows/node.js.yml)
[![npm](https://img.shields.io/npm/v/@ts-monad/observable)](https://www.npmjs.com/package/@ts-monad/observable)
[![Coverage Status](https://coveralls.io/repos/github/wewei/ts-monad-observable/badge.svg?branch=master)](https://coveralls.io/github/wewei/ts-monad-observable?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/ts-monad/observable/badge.svg?branch=master)](https://coveralls.io/github/ts-monad/observable?branch=master)

## How to use

Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Observable Monad

[![build status](https://github.com/wewei/ts-monad-observable/actions/workflows/node.js.yml/badge.svg)](https://github.com/wewei/ts-monad-observable/actions/workflows/node.js.yml)
[![build status](https://github.com/ts-monad/observable/actions/workflows/node.js.yml/badge.svg)](https://github.com/ts-monad/observable/actions/workflows/node.js.yml)
[![npm](https://img.shields.io/npm/v/@ts-monad/observable)](https://www.npmjs.com/package/@ts-monad/observable)
[![Coverage Status](https://coveralls.io/repos/github/wewei/ts-monad-observable/badge.svg?branch=master)](https://coveralls.io/github/wewei/ts-monad-observable?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/ts-monad/observable/badge.svg?branch=master)](https://coveralls.io/github/ts-monad/observable?branch=master)

## How to use

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/wewei/ts-monad-observable.git"
"url": "git+https://github.com/ts-monad/observable.git"
},
"keywords": [
"Observable",
Expand All @@ -29,9 +29,9 @@
"author": "Wei Wei",
"license": "ISC",
"bugs": {
"url": "https://github.com/wewei/ts-monad-observable/issues"
"url": "https://github.com/ts-monad/observable/issues"
},
"homepage": "https://wewei.github.io/ts-monad-observable/",
"homepage": "https://ts-monad.github.io/observable/",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
Expand Down
15 changes: 2 additions & 13 deletions src/__tests__/Observable.test.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
import {
bind,
fmap,
join,
lift,
Mutable,
mutable,
property,
propertyOf,
pure,
startWith,
} from "..";
import { add, dec, inc } from "./TestHelper";
import { mutable, startWith } from "..";
import { add, inc } from "./TestHelper";

describe("Observable & Mutable", () => {
it("should create an observable object", () => {
Expand Down

0 comments on commit 652fdc2

Please sign in to comment.