Skip to content

Commit

Permalink
Updating the version number and the documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
pawsaw committed Sep 22, 2020
1 parent 7d4b1df commit 3a53b05
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

publish-gpr:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
# publish-gpr:
# needs: build
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
# with:
# node-version: 12
# registry-url: https://npm.pkg.github.com/
# - run: npm ci
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ In the application we usually create a large number of **Uboots**.
Each Uboot has an **ID** and a **State**.

```ts
import { Uboot } from '@uboot';
import { Uboot } from '@uboot/uboot';

const fooUboot: Uboot = ocean.uboot('foo', {});
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uboot/uboot",
"version": "0.1.0",
"version": "0.1.2",
"description": "Uboot - Delightful distributed Messaging and State Management for JavaScript and TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 3a53b05

Please sign in to comment.