diff options
| author | Dax Raad <[email protected]> | 2026-02-01 22:29:45 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-02-01 22:29:45 -0500 |
| commit | c5dc075a8866e72ba710ade780044505d96d359e (patch) | |
| tree | 49e6484f0a2a4deb7d0c5cb02d5eb1ea0820909a | |
| parent | eade8ee07ba36ab3ee2e409135172c5503ae1c11 (diff) | |
| download | opencode-c5dc075a8866e72ba710ade780044505d96d359e.tar.gz opencode-c5dc075a8866e72ba710ade780044505d96d359e.zip | |
Revert "fix(plugin): correct exports to point to dist instead of src"
This reverts commit 7417e6eb38e96c5e3904a4503740a305475d154a.
| -rw-r--r-- | packages/plugin/package.json | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 160ce6a82..5a4afbae4 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -9,14 +9,8 @@ "build": "tsc" }, "exports": { - ".": { - "types": "./dist/index.d.ts", - "import": "./dist/index.js" - }, - "./tool": { - "types": "./dist/tool.d.ts", - "import": "./dist/tool.js" - } + ".": "./src/index.ts", + "./tool": "./src/tool.ts" }, "files": [ "dist" |
