Skip to content

Commit eb4351d

Browse files
authored
Add types (#5)
1 parent c03000f commit eb4351d

File tree

10 files changed

+2584
-2829
lines changed

10 files changed

+2584
-2829
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Node.js Test
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
environment: CI
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: 22
18+
registry-url: https://registry.npmjs.org/
19+
- run: npm ci
20+
- run: npm run lint
21+
- run: npm test

HISTORY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# History
22

3+
#### 1.2.1
4+
5+
- Add `"types"` field to `package.json`
6+
- Convert test file to TypeScript
7+
- Update deps
8+
9+
310
#### 1.2.0
411

512
- Added ability to queue a function (in addition to selectors) ([**@corrideat**](https://github.com/corrideat))
File renamed without changes.

0 commit comments

Comments
 (0)