mirror of
https://github.com/zoriya/elysia-swagger.git
synced 2025-12-06 00:36:10 +00:00
🔧fix: exports in package.json
This commit is contained in:
2
test/node/.gitignore
vendored
Normal file
2
test/node/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
node_modules/
|
||||
package-lock.json
|
||||
11
test/node/cjs/index.js
Normal file
11
test/node/cjs/index.js
Normal file
@@ -0,0 +1,11 @@
|
||||
if ('Bun' in globalThis) {
|
||||
throw new Error('❌ Use Node.js to run this test!');
|
||||
}
|
||||
|
||||
const { swagger } = require('@elysiajs/swagger');
|
||||
|
||||
if (typeof swagger !== 'function') {
|
||||
throw new Error('❌ CommonJS Node.js failed');
|
||||
}
|
||||
|
||||
console.log('✅ CommonJS Node.js works!');
|
||||
6
test/node/cjs/package.json
Normal file
6
test/node/cjs/package.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "commonjs",
|
||||
"dependencies": {
|
||||
"@elysiajs/swagger": "../../.."
|
||||
}
|
||||
}
|
||||
11
test/node/esm/index.js
Normal file
11
test/node/esm/index.js
Normal file
@@ -0,0 +1,11 @@
|
||||
if ('Bun' in globalThis) {
|
||||
throw new Error('❌ Use Node.js to run this test!');
|
||||
}
|
||||
|
||||
import { swagger } from '@elysiajs/swagger';
|
||||
|
||||
if (typeof swagger !== 'function') {
|
||||
throw new Error('❌ ESM Node.js failed');
|
||||
}
|
||||
|
||||
console.log('✅ ESM Node.js works!');
|
||||
6
test/node/esm/package.json
Normal file
6
test/node/esm/package.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"@elysiajs/swagger": "../../.."
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user