From 46526d578999e7e1a18490eb0b498060386fb727 Mon Sep 17 00:00:00 2001 From: Steve Mao Date: Thu, 27 Sep 2018 09:36:11 +1000 Subject: [PATCH] includeModules should be true by default If a module is not bundled, it will automatically package it. If all modules are bundled, it will package nothing extra. So this is more intuitive. --- lib/Configuration.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Configuration.js b/lib/Configuration.js index ba49252d6..08597e75a 100644 --- a/lib/Configuration.js +++ b/lib/Configuration.js @@ -10,7 +10,7 @@ const _ = require('lodash'); */ const DefaultConfig = { webpackConfig: 'webpack.config.js', - includeModules: false, + includeModules: true, packager: 'npm', packagerOptions: {}, config: null @@ -71,4 +71,4 @@ class Configuration { } } -module.exports = Configuration; \ No newline at end of file +module.exports = Configuration;