From f1b6c8918625fb67d987eaeeb3c3972e1be3aa5b Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Tue, 18 Nov 2025 08:39:07 -0800 Subject: [PATCH] Fix package types? --- plugins/template-function-json/package.json | 3 ++- plugins/template-function-xml/package.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/template-function-json/package.json b/plugins/template-function-json/package.json index 5b8026b5..8f61a4cd 100755 --- a/plugins/template-function-json/package.json +++ b/plugins/template-function-json/package.json @@ -4,7 +4,8 @@ "description": "Template functions for working with JSON data", "private": true, "version": "0.1.0", - "main": "src/index.ts", + "main": "build/index.js", + "types": "src/index.ts", "scripts": { "build": "yaakcli build", "dev": "yaakcli dev", diff --git a/plugins/template-function-xml/package.json b/plugins/template-function-xml/package.json index 706a6748..8c22512c 100755 --- a/plugins/template-function-xml/package.json +++ b/plugins/template-function-xml/package.json @@ -4,7 +4,8 @@ "description": "Template functions for working with XML data", "private": true, "version": "0.1.0", - "main": "src/index.ts", + "main": "build/index.js", + "types": "src/index.ts", "scripts": { "build": "yaakcli build", "dev": "yaakcli dev",