Skip to content

Commit ff2cf55

Browse files
authored
fix: Add .js to the end of the .esm file name (#2)
1 parent e6ae088 commit ff2cf55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/llm.ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "llm.ts",
33
"version": "0.0.6",
44
"main": "dist/index.cjs",
5-
"module": "dist/index.esm",
5+
"module": "dist/index.esm.js",
66
"types": "dist/index.d.ts",
77
"author": "Matt Rickard <[email protected]>",
88
"license": "MIT",

packages/llm.ts/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default [
2323
{
2424
input: "src/index.ts",
2525
output: {
26-
file: "dist/index.esm",
26+
file: "dist/index.esm.js",
2727
format: "esm",
2828
},
2929
plugins: [

0 commit comments

Comments
 (0)