Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
fix: type define
Browse files Browse the repository at this point in the history
  • Loading branch information
hlhr202 committed Apr 10, 2023
1 parent ed01e62 commit 8bcfae8
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 24 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "llama-node",
"version": "0.0.18",
"version": "0.0.19",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"prepublish": "npm run build",
Expand Down Expand Up @@ -48,11 +49,11 @@
"vitest": "^0.29.8"
},
"dependencies": {
"@llama-node/cli": "0.0.18",
"@llama-node/core": "0.0.18"
"@llama-node/cli": "0.0.19",
"@llama-node/core": "0.0.19"
},
"peerDependencies": {
"@llama-node/cli": "0.0.18",
"@llama-node/core": "0.0.18"
"@llama-node/cli": "0.0.19",
"@llama-node/core": "0.0.19"
}
}
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llama-node/cli",
"version": "0.0.18",
"version": "0.0.19",
"description": "",
"main": "index.js",
"type": "commonjs",
Expand All @@ -12,7 +12,7 @@
"test": "tsx src/index.ts"
},
"dependencies": {
"@llama-node/core": "0.0.18",
"@llama-node/core": "0.0.19",
"yargs": "^17.7.1"
},
"author": "",
Expand Down
6 changes: 0 additions & 6 deletions packages/core/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
/* tslint:disable */
/* eslint-disable */
/* prettier-ignore */

/* auto-generated by NAPI-RS */

const { existsSync, readFileSync } = require('fs')
const { join } = require('path')

Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llama-node/core",
"version": "0.0.18",
"version": "0.0.19",
"main": "index.js",
"types": "index.d.ts",
"napi": {
Expand Down

0 comments on commit 8bcfae8

Please sign in to comment.