From 02893b6330d867555baf2568c8a4ce9dd29243a2 Mon Sep 17 00:00:00 2001 From: Dan Selman Date: Mon, 20 Mar 2023 13:46:49 +0000 Subject: [PATCH] chore(build) : publish dist dir Signed-off-by: Dan Selman --- package.json | 7 +++++-- src/index.ts | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ea9d0d0..da5baee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@accordproject/template-engine", - "version": "1.0.0", + "version": "1.0.2", "description": "Generation of AgreementMark from TemplateMark + JSON Data", "homepage": "https://github.com/accordproject", "engines": { @@ -8,7 +8,10 @@ "npm": ">=6" }, "main": "dist/index.js", - "typings": "dist/index.d.ts", + "types": "dist/index.d.ts", + "files": [ + "/dist" + ], "scripts": { "clean": "rimraf dist", "prebuild": "npm-run-all clean", diff --git a/src/index.ts b/src/index.ts index afbb55a..044962d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,3 +13,4 @@ */ export { TemplateMarkInterpreter } from './TemplateMarkInterpreter'; +export { TemplateMarkToTypeScriptCompiler } from './TemplateMarkToTypeScriptCompiler';