From 6f553d0fbaba3d6bfed99a649bb1b8e9268772ef Mon Sep 17 00:00:00 2001 From: Artem Derevnjuk Date: Sat, 28 Oct 2017 05:17:26 +0300 Subject: [PATCH] fix(embed-node): import missing module to work with fs (#416) --- src/bundling/embed-node.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bundling/embed-node.ts b/src/bundling/embed-node.ts index 3a03b98..2bc28e0 100644 --- a/src/bundling/embed-node.ts +++ b/src/bundling/embed-node.ts @@ -1,5 +1,6 @@ import { createHash } from 'crypto' import * as path from 'path' +import * as fs from 'fs' export interface EmbedNodeModuleOptions { [key: string]: { additionalFiles: string[] } | true