Skip to content

Commit

Permalink
Add Region type (#1)
Browse files Browse the repository at this point in the history
* Add Region type

* fixes & docs

* make eslint happy

* add missing functions

* fixes
  • Loading branch information
Szegoo authored Jan 12, 2024
1 parent 4e58d92 commit d750939
Show file tree
Hide file tree
Showing 11 changed files with 890 additions and 41 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:

# Install dependencies
- name: Install dependencies
run: npm install
run: npm i

# Run linter
- name: Run Linter
run: npm run lint

# Check Prettier
- name: Check Prettier
run: npm run prettier-check
run: npm run prettier

# Run tests
- name: Run Tests
Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# coretime-utils

An npm package containing types and constants that are commonly reused in regarding to Coretime
An npm package containing types and constants that are commonly reused in relation to Coretime.

### Usage

Installation:

```
npm i coretime-utils
```

Types can be imported directly from the package, e.g.

```js
import { CoreMask } from 'coretime-utils';
```
Loading

0 comments on commit d750939

Please sign in to comment.