🔧fix: exports in package.json

This commit is contained in:
bogeychan
2023-06-04 16:19:12 +02:00
parent 640f0be871
commit 95b3fca44b
6 changed files with 42 additions and 5 deletions

2
test/node/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
node_modules/
package-lock.json

11
test/node/cjs/index.js Normal file
View 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!');

View File

@@ -0,0 +1,6 @@
{
"type": "commonjs",
"dependencies": {
"@elysiajs/swagger": "../../.."
}
}

11
test/node/esm/index.js Normal file
View 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!');

View File

@@ -0,0 +1,6 @@
{
"type": "module",
"dependencies": {
"@elysiajs/swagger": "../../.."
}
}