Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
955a353
created index.js, updated readme, added action
hemantlakhotia204 Sep 13, 2023
a326e0e
updated .yml for fundabaot setup
hemantlakhotia204 Sep 14, 2023
3ac24ab
updated action to publish before release
Isha-Sharma Sep 14, 2023
5e7d7d8
added package.json + published first version of fetchq
Isha-Sharma Sep 14, 2023
8e5c8db
update license to MIT + added npmignore
Isha-Sharma Sep 14, 2023
bbdf64f
updated readme
Isha-Sharma Sep 14, 2023
7aee115
update to @fundwave/fetchq [skip ci]
Isha-Sharma Sep 14, 2023
3d05924
index convert to ts
hemantlakhotia204 Sep 14, 2023
9d367e1
test cases added + js docs added
hemantlakhotia204 Sep 15, 2023
4ce21d6
updated tsconfig
hemantlakhotia204 Sep 15, 2023
9504be3
added debug mode
hemantlakhotia204 Sep 15, 2023
534514f
added getFetch function + exclude tests from dist
hemantlakhotia204 Sep 18, 2023
02dcb5a
feat: dispose queue method added + readme updated
hemantlakhotia204 Sep 18, 2023
ffd4707
fix debug mode + import fix in test
hemantlakhotia204 Sep 19, 2023
f17549b
code cleanup + renaming
hemant-fundwave Sep 21, 2023
18d7989
improved debug mode
hemant-fundwave Sep 22, 2023
1ae5aad
linting added + .npmignore updated
hemant-fundwave Oct 5, 2023
d99633a
jaction update: added lint+test+publish gitlab
hemant-fundwave Oct 5, 2023
1f7a2c6
rename variables and functions + added getter/setter methods
hemant-fundwave Oct 5, 2023
b1c4881
unit test:destroyQueue + concurrent functionality
hemant-fundwave Oct 5, 2023
a177708
fix: concurrency test + fetch not found in node v16 + update readme
hemant-fundwave Oct 6, 2023
6947ff0
add: jsodoc config + docs script to action
hemant-fundwave Oct 12, 2023
22279c6
update action to publish to npm on main + build before publishing
Isha-Sharma Oct 13, 2023
ca83c0a
install deps github action
Isha-Sharma Oct 13, 2023
061682e
CI: bumps @fundwave/fetch-queue to 0.0.2-init.0
gh-action-bump-version Oct 13, 2023
eb1c30f
fix: git config
Isha-Sharma Oct 13, 2023
212745b
CI: bumps @fundwave/fetch-queue to 0.0.2-init.1
Oct 13, 2023
ac039bf
added cjs support + update .npmignore
hemant-fundwave Oct 17, 2023
3b70ee3
CI: bumps @fundwave/fetch-queue to 0.0.2-hybrid-module.0
Oct 17, 2023
7e850c5
downgraded node-fetch to v2
hemant-fundwave Oct 17, 2023
e6c7bfe
update: lint ignore require statement
hemant-fundwave Oct 17, 2023
d1fdd36
Merge remote-tracking branch 'origin/main' into hybrid-module
hemant-fundwave Oct 17, 2023
5699b81
CI: bumps @fundwave/fetch-queue to 0.0.2-hybrid-module.1
Oct 17, 2023
626c3b6
format package.json
hemant-fundwave Oct 17, 2023
e8b8d0b
import fix
hemant-fundwave Oct 17, 2023
ab3ba0e
CI: bumps @fundwave/fetch-queue to 0.0.2-hybrid-module.2
Oct 17, 2023
1acacd3
upgrade node-fetch to v3.
hemant-fundwave Oct 18, 2023
49719d4
CI: bumps @fundwave/fetch-queue to 0.0.2-hybrid-module.3
Oct 18, 2023
a3becfd
Merge remote-tracking branch 'origin' into hybrid-module
hemant-fundwave Oct 18, 2023
2ca4bbf
CI: bumps @fundwave/fetch-queue to 0.0.2-hybrid-module.4
Oct 18, 2023
50afe22
change default main to esm
hemant-fundwave Oct 20, 2023
721725a
CI: bumps @fundwave/fetch-queue to 0.0.2-hybrid-module.5
Oct 20, 2023
4f5f4bf
update version to match main
Isha-Sharma Nov 7, 2023
e6ecede
use node v18 on actions
Isha-Sharma Nov 7, 2023
1995356
fix package-lock
Isha-Sharma Nov 7, 2023
4650e8a
fix package-lock without legacy-peer-deps
Isha-Sharma Nov 7, 2023
0600355
CI: bumps @fundwave/fetch-queue to 1.1.1-hybrid-module.0
Nov 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run lint
Expand All @@ -37,7 +37,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -96,6 +96,7 @@ jobs:
branch: ${{ github.ref }}

- name: Release
if: ${{ github.ref_name == 'main'}}
env:
VERSION: ${{ steps.version.outputs.newTag }}
run: |
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

A client-side library that allows you to queue fetch requests.

- Supports ES modules
- Supports CommonJS

## Installation

```sh
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ export default {
transform: {
"^.+\\.(ts|tsx)$": "ts-jest",
},
moduleNameMapper: { "node-fetch": "<rootDir>/node_modules/node-fetch" },
moduleNameMapper: { "node-fetch": "<rootDir>/node_modules/node-fetch-jest" },
};
Loading