From c6cb00c4fe350f1573b35449e7bdffe994e2ea01 Mon Sep 17 00:00:00 2001 From: Jan Nicklas Date: Tue, 12 Jan 2016 09:31:48 +0100 Subject: [PATCH] Fixes #164 - Error: Cannot find module './lib/compiler.js' --- package.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index ed70267..3463574 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,14 @@ { "name": "html-webpack-plugin", - "version": "2.6.0", + "version": "2.6.1", "description": "Simplifies creation of HTML files to serve your webpack bundles", "main": "index.js", "files": [ "index.js", - "loader.js", - "default_index.html" + "default_index.html", + "lib/errors.js", + "lib/compiler.js", + "lib/loader.js" ], "scripts": { "pretest": "jshint *.js spec",