Skip to content

Commit

Permalink
v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
r2d4 committed May 4, 2023
1 parent 168080c commit 19c542a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/llm.ts/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "llm.ts",
"version": "0.0.5",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"version": "0.0.6",
"main": "dist/index.cjs",
"module": "dist/index.esm",
"types": "dist/index.d.ts",
"author": "Matt Rickard <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/llm.ts/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default [
{
input: "src/index.ts",
output: {
file: "dist/index.cjs.js",
file: "dist/index.cjs",
format: "cjs",
},
plugins: [
Expand All @@ -23,7 +23,7 @@ export default [
{
input: "src/index.ts",
output: {
file: "dist/index.esm.js",
file: "dist/index.esm",
format: "esm",
},
plugins: [
Expand Down

0 comments on commit 19c542a

Please sign in to comment.