Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
vsund committed Apr 21, 2018
2 parents 56383dc + 433ecfe commit 490957e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## About
This is a dead simple JavaScript / TypeScript implementation of the API endpoints of [Blockstack Core](https://github.com/blockstack/blockstack-core).

The version number is supposed to be the same as the one for Blockstack Core.
This version is compatible to Blockstack Core in version `0.18.0`.


## Installation
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockstack-core-client.ts",
"version": "0.18.0",
"version": "1.0.0",
"author": {
"name": "vsund"
},
Expand All @@ -9,7 +9,7 @@
"license": "MIT",
"scripts": {
"generate-json-interfaces": "cd ./src/responses/ && find ./ -name \"*.json\" -exec json2ts --style.useTabs --style.singleQuote --input {} --output {}.d.ts \\; && cd -",
"build": "yarn run clean && yarn run generate-json-interfaces && tsc && cp -r ./src/responses ./dist/responses",
"build": "yarn run clean && yarn run generate-json-interfaces && tsc && touch ./dist/responses && cp ./src/responses/*.d.ts ./dist/responses",
"clean": "rm -rf ./dist/ && rm -r ./src/responses/*.d.ts"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export { BlockstackCoreClient } from './BlockstackCoreClient';
export * from './responses';

0 comments on commit 490957e

Please sign in to comment.