Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔧fix: exports in package.json #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@elysiajs/stream",
"version": "1.0.3",
"type": "module",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
Expand All @@ -27,9 +28,9 @@
"elysia": ">= 1.0.2"
},
"exports": {
"node": "./dist/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"bugs": "https://github.com/elysiajs/elysia-static/issues",
Expand All @@ -43,12 +44,13 @@
"license": "MIT",
"scripts": {
"dev": "bun run --watch example/index.tsx",
"test": "bun test",
"test": "bun test && npm run test:node",
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"release": "npm run build && npm run test && npm publish --access public"
},
"types": "./src/index.ts",
"dependencies": {
"nanoid": "^5.0.1"
}
}
}
2 changes: 2 additions & 0 deletions test/node/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
package-lock.json
13 changes: 13 additions & 0 deletions test/node/cjs/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// if ("Bun" in globalThis) {
// throw new Error("❌ Use Node.js to run this test!");
// }

// const { Stream } = require("@elysiajs/stream");

// if (typeof Stream !== "function" && Stream["name"] === "Stream") {
// throw new Error("❌ CommonJS Node.js failed");
// }

// console.log("✅ CommonJS Node.js works!");

console.log("⏩ CommonJS Node.js unsupported");
6 changes: 6 additions & 0 deletions test/node/cjs/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "commonjs",
"dependencies": {
"@elysiajs/stream": "../../.."
}
}
11 changes: 11 additions & 0 deletions test/node/esm/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
if ("Bun" in globalThis) {
throw new Error("❌ Use Node.js to run this test!");
}

import { Stream } from "@elysiajs/stream";

if (typeof Stream !== "function" && Stream["name"] === "Stream") {
throw new Error("❌ ESM Node.js failed");
}

console.log("✅ ESM Node.js works!");
6 changes: 6 additions & 0 deletions test/node/esm/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "module",
"dependencies": {
"@elysiajs/stream": "../../.."
}
}