Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf

[*.md]
max_line_length = off
trim_trailing_whitespace = false
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '18.x', '20.x', '22.x' ]
node-version: [ '20.x', '22.x', '24.x' ]
steps:
- uses: actions/checkout@v4
name: Checkout Repository
Expand Down Expand Up @@ -40,8 +40,8 @@ jobs:
name: Test All

- name: Upload coverage reports to Codecov
if: ${{ matrix.node-version == '20.x' }}
uses: codecov/codecov-action@v4.0.1
if: ${{ matrix.node-version == '24.x' }}
uses: codecov/codecov-action@v5.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: eddienubes/sagetest
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -136,5 +136,5 @@ test/fixtures/temp/*
build
.idea
.DS_Store
.serena
.serena/
.claude
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
- Built on top of [undici](https://github.com/nodejs/undici) for **maximum performance**.
- Provides **easy-to-use**, supertest-like API.
- Supports a **dedicated test server** to reduce the number of instances spawned during testing.
- Supports **Node.js v18.0 and above**.
- Supports **Node.js v20.0 and above**.
- **No unnecessary** third-party dependencies.
- Automatically handles **cookie parsing**.

Expand Down
15 changes: 5 additions & 10 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightTypeDoc, { typeDocSidebarGroup } from 'starlight-typedoc'
import tailwind from '@astrojs/tailwind';
import starlightTypeDoc from 'starlight-typedoc'

// https://astro.build/config
export default defineConfig({
Expand All @@ -17,9 +16,9 @@ export default defineConfig({
customCss: [
'./src/tailwind.css'
],
social: {
github: 'https://github.com/eddienubes/sagetest'
},
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/eddienubes/sagetest' }
],
sidebar: [
{
label: 'Getting Started',
Expand Down Expand Up @@ -47,8 +46,6 @@ export default defineConfig({
}
]
},
// Add the generated sidebar group to the sidebar.
typeDocSidebarGroup
],
components: {
Hero: './src/components/Hero.astro'
Expand All @@ -60,7 +57,5 @@ export default defineConfig({
tsconfig: '../tsconfig.json',
}),
]
}), tailwind({
applyBaseStyles: false
})]
});
});
30 changes: 18 additions & 12 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,25 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.5.2",
"@astrojs/starlight": "^0.18.0",
"@astrojs/starlight-tailwind": "^2.0.1",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.3.4",
"astro-live-code": "^0.0.1",
"sharp": "^0.32.5",
"starlight-typedoc": "^0.9.0",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "4.0.0-next.53",
"typescript": "^5.3.3"
"@astrojs/check": "^0.9.8",
"@astrojs/starlight": "^0.38.1",
"@astrojs/starlight-tailwind": "^5.0.0",
"astro": "^6.0.6",
"astro-live-code": "^0.0.6",
"sharp": "^0.34.5",
"starlight-typedoc": "^0.21.5",
"tailwindcss": "^4.0.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"serve": "^14.2.1"
"serve": "^14.2.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}
Loading
Loading