From fea924e67017bb5f6f969d5d3d3984de640917fc Mon Sep 17 00:00:00 2001 From: Andrew Worcester Date: Fri, 18 Oct 2019 15:19:26 -0400 Subject: [PATCH] fixes TypeScript exports --- package.json | 2 +- src/plop.d.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6b8fa67d..76d85bfc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plop", - "version": "2.5.1", + "version": "2.5.2", "description": "Micro-generator framework that makes it easy for an entire team to create files with a level of uniformity", "main": "./src/plop", "repository": { diff --git a/src/plop.d.ts b/src/plop.d.ts index 915437e9..cd575923 100644 --- a/src/plop.d.ts +++ b/src/plop.d.ts @@ -7,5 +7,6 @@ export { CustomActionFunction, ModifyActionConfig, PlopCfg, - PlopGenerator + PlopGenerator, + NodePlopAPI } from 'node-plop';