1
0

Compare commits

...

3 Commits

Author SHA1 Message Date
91f30929da 2.4.6 2024-02-21 20:07:05 +01:00
93082884fa add esbuild 2024-02-21 19:59:14 +01:00
a9e83968b9 switch to vitest 2024-02-21 19:54:08 +01:00
9 changed files with 1107 additions and 3303 deletions

2
.gitignore vendored
View File

@@ -146,3 +146,5 @@ dist
# Custom # Custom
/index.js /index.js
/index.d.ts /index.d.ts
/utils.js
/utils.d.ts

View File

@@ -3,7 +3,9 @@
.gitignore .gitignore
.nvmrc .nvmrc
coverage/ coverage/
jest.config.ts vite.config.ts
src/ src/
tests/ tests/
tsconfig.json tsconfig.json
utils.*
*.tgz

View File

@@ -1,9 +0,0 @@
import type { Config } from 'jest'
const config: Config = {
preset: 'ts-jest',
testEnvironment: 'node',
verbose: true
}
export default config

4350
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "@tsndr/cloudflare-worker-jwt", "name": "@tsndr/cloudflare-worker-jwt",
"version": "2.4.5", "version": "2.4.6",
"description": "A lightweight JWT implementation with ZERO dependencies for Cloudflare Worker", "description": "A lightweight JWT implementation with ZERO dependencies for Cloudflare Worker",
"type": "module", "type": "module",
"exports": "./index.js", "exports": "./index.js",
@@ -9,8 +9,8 @@
"node": ">=18" "node": ">=18"
}, },
"scripts": { "scripts": {
"build": "tsc", "build": "tsc & esbuild --bundle --target=esnext --platform=neutral --outfile=index.js src/index.ts & wait",
"test": "jest" "test": "vitest"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@@ -30,13 +30,11 @@
}, },
"homepage": "https://github.com/tsndr/cloudflare-worker-jwt#readme", "homepage": "https://github.com/tsndr/cloudflare-worker-jwt#readme",
"devDependencies": { "devDependencies": {
"@cloudflare/workers-types": "^4.20231025.0", "@cloudflare/workers-types": "^4.20240208.0",
"@jest/globals": "^29.7.0", "@edge-runtime/vm": "^3.2.0",
"@types/jest": "^29.5.8", "@types/node": "^20.11.19",
"@types/node": "^20.9.0", "ts-node": "^10.9.2",
"jest": "^29.7.0", "typescript": "^5.3.3",
"ts-jest": "^29.1.1", "vitest": "^1.3.1"
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
} }
} }

View File

@@ -1,7 +1,4 @@
import crypto from 'node:crypto' import { describe, expect, test } from 'vitest'
Object.defineProperty(global, 'crypto', { value: { subtle: crypto.webcrypto.subtle }})
import { describe, expect, test } from '@jest/globals'
import jwt, { JwtAlgorithm } from '../src/index' import jwt, { JwtAlgorithm } from '../src/index'
type Dataset = { type Dataset = {

View File

@@ -1,4 +1,4 @@
import { describe, expect, test } from '@jest/globals' import { describe, expect, test } from 'vitest'
import { import {
bytesToByteString, bytesToByteString,
byteStringToBytes, byteStringToBytes,

View File

@@ -5,6 +5,7 @@
"target": "esnext", "target": "esnext",
"lib": ["esnext"], "lib": ["esnext"],
"declaration": true, "declaration": true,
"emitDeclarationOnly": true,
"strict": true, "strict": true,
"noImplicitAny": true, "noImplicitAny": true,
"strictNullChecks": true, "strictNullChecks": true,

9
vite.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'edge-runtime',
watch: false,
reporters: ['verbose']
}
})