Skip to content

Commit ae437ff

Browse files
committed
1.0.0-beta.1
1 parent bc1e85a commit ae437ff

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ View the [API documentation](https://bitpshr.github.io/gaba/) for information on
1010

1111
1. Install the package.
1212
```
13-
npm i @metamask/gaba
13+
npm i gaba
1414
```
1515
2. Compose stores to create a data model.
1616
```js
@@ -21,7 +21,7 @@ View the [API documentation](https://bitpshr.github.io/gaba/) for information on
2121
NetworkController,
2222
NetworkStatusController,
2323
TokenRatesController
24-
} from '@metamask/gaba';
24+
} from 'gaba';
2525
2626
const datamodel = new ComposableController({
2727
address: new AddressBookController(),

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "@metamask/gaba",
3-
"version": "1.0.0",
2+
"name": "gaba",
3+
"version": "1.0.0-beta.1",
44
"description": "Collection of platform-agnostic modules for creating secure data models for cryptocurrency wallets",
55
"license": "MIT",
66
"scripts": {
77
"precommit": "lint-staged",
88
"lint": "tslint src/**/*.ts",
99
"test": "jest --coverage",
1010
"prettier": "prettier **/*.ts --write --ignore-path=.gitignore",
11-
"build": "tsc",
11+
"build": "tsc && cp package.json dist/.",
1212
"doc": "typedoc src/"
1313
},
1414
"jest": {

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ export * from './BaseController';
33
export * from './ComposableController';
44
export * from './CurrencyRateController';
55
export * from './NetworkStatusController';
6+
export * from './PhishingController';
67
export * from './TokenRatesController';

0 commit comments

Comments
 (0)