Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3c24331
Push
PuruVJ May 6, 2025
1c20cae
Oops
PuruVJ May 6, 2025
74ea2a5
CJS
PuruVJ May 6, 2025
dc56e0f
Update tsup.config.js
PuruVJ May 19, 2025
4816b4c
Update tsconfig.json
PuruVJ May 19, 2025
df3d613
dev no-build environment
PuruVJ Jun 18, 2025
5862a0f
Normalize HTTP method casing in RequestConfig and update default method
PuruVJ Jun 18, 2025
a0f9b16
chore: add ESLint configuration and pnpm workspace settings
PuruVJ Jun 18, 2025
a20e5c5
Add cr.yml
PuruVJ Jun 18, 2025
e2ffa8d
eh
PuruVJ Jun 18, 2025
4e3d11c
no compact
PuruVJ Jun 18, 2025
c722542
fix: correct exports configuration in package.json
PuruVJ Jun 18, 2025
4e21c6a
fix: update ESLint and tsup configurations for improved module handling
PuruVJ Jun 18, 2025
a24bd44
fix: update files configuration in package.json to include lib directory
PuruVJ Jun 18, 2025
9b36c26
fix: remove lib directory from files and update exports configuration…
PuruVJ Jun 18, 2025
b01f89d
fix: update target in tsup configuration to es2023
PuruVJ Jun 18, 2025
c13694b
fix: implement simpleClone for deep cloning DEFAULT_CONFIG in Api class
PuruVJ Jun 18, 2025
5e840af
fix: update GitHub Actions workflow for PRs to use canary-libs job
PuruVJ Jun 23, 2025
7f376b8
fix: update paths in GitHub Actions workflow to correct lib directory…
PuruVJ Jun 23, 2025
eae17cc
fix: remove paths filter from pull request trigger in GitHub Actions …
PuruVJ Jun 23, 2025
6c4e0b6
fix: update GitHub Actions workflow to implement continuous releases
PuruVJ Jun 25, 2025
460d057
fix: rename job from test to publish in GitHub Actions workflow
PuruVJ Jun 25, 2025
90958e7
fix: correct usage of globalIgnores in ESLint config and adjust funct…
PuruVJ Jun 26, 2025
ca4ef9e
12.1.0
PuruVJ Jun 26, 2025
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
15 changes: 15 additions & 0 deletions .github/workflows/cr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: PR / Canary Libs

on:
pull_request:
types:
- opened
- reopened
- synchronize

jobs:
canary-libs:
uses: beyonk-group/workflows/.github/workflows/canary-libs.yml@main
secrets: inherit
with:
use_playwright: true
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
.DS_Store
.DS_Store
dist
15 changes: 15 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import mocha from '@beyonk/eslint-config/mocha'
import recommended from '@beyonk/eslint-config/recommended'
import { defineConfig, globalIgnores } from 'eslint/config'

export default defineConfig([
...globalIgnores('dist'),
...recommended,
...mocha,
{
languageOptions: {
ecmaVersion: 2025,
sourceType: 'module'
}
}
])
12 changes: 0 additions & 12 deletions lib/api/_just-compose.js

This file was deleted.

233 changes: 0 additions & 233 deletions lib/api/index.js

This file was deleted.

19 changes: 0 additions & 19 deletions lib/entrypoint.js

This file was deleted.

12 changes: 0 additions & 12 deletions lib/error-handlers/access-denied.js

This file was deleted.

12 changes: 0 additions & 12 deletions lib/error-handlers/bad-data.js

This file was deleted.

12 changes: 0 additions & 12 deletions lib/error-handlers/conflict.js

This file was deleted.

8 changes: 0 additions & 8 deletions lib/error-handlers/default.js

This file was deleted.

12 changes: 0 additions & 12 deletions lib/error-handlers/expectation-failed.js

This file was deleted.

12 changes: 0 additions & 12 deletions lib/error-handlers/forbidden.js

This file was deleted.

12 changes: 0 additions & 12 deletions lib/error-handlers/gone.js

This file was deleted.

Loading