Skip to content

Commit

Permalink
Merge pull request #54 from bennyboer/38-build-library-artifacts
Browse files Browse the repository at this point in the history
38 build library artifacts
  • Loading branch information
bennyboer authored Jul 22, 2022
2 parents bb8219c + afeef7e commit 8abc1b5
Show file tree
Hide file tree
Showing 133 changed files with 5,980 additions and 2,988 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
yarn install --frozen-lockfile
- name: Build library
run: |
npm run build
yarn build
- name: Test library
run: |
npm run test
yarn test
3 changes: 2 additions & 1 deletion .github/workflows/npm-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
yarn install --frozen-lockfile
- name: Build library
run: |
npm run build
yarn build
yarn bundle
- name: Publish library
run: npm publish
env:
Expand Down
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"tabWidth": 4,
"singleQuote": true
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ We aim to provide a high-performance table library that may display nearly infin
really noticing. Normal HTML table elements get pretty laggy when getting large and are thus not always an option. This
library builds around HTML5 canvas to draw the table from scratch, thus achieving a smooth user experience.

## Installation and usage

Checkout the usage and installation file [here](docs/usage.md).

## Getting started

First and foremost install NodeJS (Check one of the workflow files under `.github/workflows` for the current version we use).
Expand Down
1 change: 1 addition & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TODO
Loading

0 comments on commit 8abc1b5

Please sign in to comment.