diff --git a/global-cli/modifiers/snapshot.js b/global-cli/modifiers/snapshot.js index c530b340..d7a62dad 100644 --- a/global-cli/modifiers/snapshot.js +++ b/global-cli/modifiers/snapshot.js @@ -2,7 +2,8 @@ var path = require('path'), exists = require('path-exists').sync, helper = require('./util/config-helper'), - SnapshotPlugin = require('./util/SnapshotPlugin'); + SnapshotPlugin = require('./util/SnapshotPlugin'), + IgnorePlugin = require('webpack').IgnorePlugin; module.exports = function(config, opts) { if(!opts.framework) { @@ -27,4 +28,14 @@ module.exports = function(config, opts) { // Disabled temporarily until effectiveness is proven // append: (opts.framework ? '\nenact_framework.load();\n' : undefined) })); + + var ssHelperDeps = [ + '@enact/i18n', + '@enact/moonstone' + ]; + for(var i=0; i