Skip to content

Commit

Permalink
v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
midlik committed Apr 29, 2024
1 parent 61b9d3b commit fd99e4f
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
with:
name: build
path: build
# - name: NPM Publish
# run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: NPM Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file, following t

## [Unreleased]

## [0.9.0] - 2024-04-29

- Renamed the package from `hotmap` to `heatmap-component`
- Zooming is off by default (call `hm.setZooming({ axis: 'x' })` to turn it on)

Expand Down
23 changes: 17 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,32 @@ TypeScript library for creating interactive grid heatmaps

## Documentation

[Documentation](./docs/index)
[Documentation pages](./docs/index)

## Install dependencies and build
## Demos

[Demos](./demo)

## Development

### Get source code

```sh
git clone https://github.com/PDBeurope/heatmap-component.git
cd heatmap-component/
```

### Install dependencies and build

```sh
npm install
npm run rebuild
```

## Run locally
### Run locally

```sh
npm run start
```

Go to <http://localhost:7000/demo/>

:)
Then go to <http://localhost:7000/demo/>
4 changes: 2 additions & 2 deletions package-lock.json

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

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"name": "heatmap-component",
"version": "0.8.0",
"description": "",
"version": "0.9.0",
"description": "TypeScript library for creating interactive grid heatmaps",
"repository": {
"type": "git",
"url": "git+https://github.com/PDBeurope/heatmap-component.git"
},
"homepage": "https://PDBeurope.github.io/heatmap-component",
"files": [
"build",
"lib",
Expand Down

0 comments on commit fd99e4f

Please sign in to comment.