@owlworks/package-patch
Advanced tools
Comparing version 0.0.4 to 0.0.5
export declare class PatchCode { | ||
patchIndexFile: (destDir: any, projectName: any) => Promise<never> | undefined; | ||
patchPackageJson: (destDir: any, projectName: any) => Promise<never> | undefined; | ||
patchIndexFile: (destDir: string, projectName: string) => Promise<never> | undefined; | ||
patchPackageJson: (destDir: string, projectName: string) => Promise<never> | undefined; | ||
} | ||
export declare const codePatcher: PatchCode; |
@@ -6,3 +6,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.PatchCode = void 0; | ||
exports.codePatcher = exports.PatchCode = void 0; | ||
const fs_1 = __importDefault(require("fs")); | ||
@@ -43,1 +43,2 @@ const customIndexFile = "const { start } = require(\"@owlworks/botbuilder-dialogs-adaptive-runtime-integration-express\");\n\n(async function () {\n try {\n await start(process.cwd(), \"settings\");\n } catch (err) {\n console.error(err);\n process.exit(1);\n }\n})();"; | ||
exports.PatchCode = PatchCode; | ||
exports.codePatcher = new PatchCode(); |
{ | ||
"name": "@owlworks/package-patch", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Patch Plugin for Bot Composer ", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
4584
65