嗯,我知道Webpack允许我们导入包含require
的包,这是Webpack的基础结构。
但是,如果在条目文件中不使用require
,这不是没用吗?
我有test.js
条目:
console.log('Test');
和输出
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, {
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ });
/******/ }
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 1);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */,
/* 1 */
/***/ (function(module, exports, __webpack_require__) {
__webpack_require__(2);
/***/ }),
/* 2 */
/***/ (function(module, exports) {
console.log('Test');
/***/ })
/******/ ]);
这是无用的代码,也阻止我使用全局变量!
至少对我而言,它是!这就是为什么我想知道是否有任何插件或解决方法来删除它?
答案 0 :(得分:5)
经过一番研究,我找不到合适的方法。
但是考虑一个替代方案,我可以找到rollupjs
,一个像Webpack一样工作的优化捆绑器,但我们可以用更少的代码实现我们的目标
// rollup.config.js
export default {
input: 'src/main.js',
output: {
file: 'bundle.js',
format: 'cjs'
}
};
它也可以用不同的格式编译。
生成的包的格式。以下之一:
- 等模块加载器一起使用
amd
- 异步模块定义,与RequireJScjs
- CommonJS,适用于Node和Browserify / Webpackes
- 将捆绑包保留为ES模块文件iife
- 一个自动执行的函数,适合包含为标记。 (如果要为应用程序创建一个包, 您可能想要使用它,因为它会导致较小的文件 尺寸。)umd - 通用模块定义,作为amd,cjs和iife工作 一体化
有关详细信息,请访问their documentation
使用格式iife
,它封装了我的模块的范围,因此编译后的test.js
将导致:
(function () {
'use strict';
console.log('Test');
}());
根据输出格式,这是一种更合理的编译ES modules
的方法。
答案 1 :(得分:0)
如果您需要与rollup.js捆绑/压缩旧代码,并且不想让我生孩子,我可以使用--no-treeshake命令行标志
rollup -c --no-treeshake`
与Google封闭编译器插件一起完成此操作
import closure from 'rollup-plugin-closure-compiler-js';
import glob from 'glob';
const inputPath = './Static/JavaScript/';
let configArr = [];
for (let val of glob.sync(inputPath + '*.unpack.js')) {
let obj = {};
const filenameRegex = val.match(/([\w\d_-]*)\.?[^\\\/]*$/i);
obj['input'] = filenameRegex['input'];
obj['output'] = {
file: inputPath + filenameRegex[1] + '.js',
format: 'cjs'
};
obj['plugins'] = [closure({
compilationLevel: 'WHITESPACE_ONLY',
processCommonJsModules: true,
languageIn: 'ES5',
languageOut: 'ES5'
})]
configArr.push(obj);
}
export default configArr;