From 5e52b0038f06ebc8e46cf90bb11bbc7014510c56 Mon Sep 17 00:00:00 2001 From: John Wu Date: Sun, 12 Apr 2015 22:05:17 +0800 Subject: [PATCH] Add less entry for Webpack When using [Webpack](http://webpack.github.io/) with lesshat, it needs to know which **less** file is the entry file. Just like bootstrap ``` "less": "less/bootstrap.less", ``` --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4dc7e8f..a3c7347 100644 --- a/package.json +++ b/package.json @@ -39,5 +39,6 @@ }, "scripts": { "test": "grunt test" - } -} \ No newline at end of file + }, + "less": "build/lesshat.less" +}