| 12345678910111213141516 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var CommonChunksPlugin = require('webpack/lib/optimize/CommonsChunkPlugin');
- var Constants = require("../util/constants");
- var helpers_1 = require("../util/helpers");
- function getCommonChunksPlugin() {
- return new CommonChunksPlugin({
- name: 'vendor',
- minChunks: checkIfInNodeModules
- });
- }
- exports.getCommonChunksPlugin = getCommonChunksPlugin;
- function checkIfInNodeModules(webpackModule) {
- return webpackModule && webpackModule.userRequest && webpackModule.userRequest.startsWith(helpers_1.getStringPropertyValue(Constants.ENV_VAR_NODE_MODULES_DIR));
- }
|