2017-08-04 17 views
6

Vâng, tôi biết Webpack cho phép chúng tôi nhập gói với require và đó là cơ sở hạ tầng từ Webpack.Xóa gói khởi động Webpack khỏi tệp xuất

Nhưng, không phải là vô dụng khi bạn không sử dụng require trong tệp nhập?

Tôi có test.js cụm từ này:

console.log('Test'); 

và đầu ra

/******/ (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'); 

/***/ }) 
/******/ ]); 

Đây là mã vô dụng mà cũng ngăn cản tôi từ việc sử dụng các biến toàn cầu!

Ít nhất với tôi, đúng vậy! và đó là lý do tại sao tôi muốn biết liệu có bất kỳ plugin hoặc giải pháp nào khác để xóa nó không?

+0

Bản sao của https://stackoverflow.com/questions/43484895/webpack-remove-webpackbootstrap-code –

Trả lời

4

Sau một số nghiên cứu, tôi không thể tìm được cách thích hợp để thực hiện việc này.

Nhưng điều tra cho một sự thay thế tôi có thể tìm rollupjs, một bundler tối ưu hóa hoạt động như Webpack có, nhưng chúng ta có thể đạt được mục tiêu của chúng tôi với mã ít

// rollup.config.js 
export default { 
    input: 'src/main.js', 
    output: { 
    file: 'bundle.js', 
    format: 'cjs' 
    } 
}; 

Nó cũng có thể được biên dịch trong các định dạng khác nhau.

Định dạng của gói được tạo. Một trong những cách sau:

  • amd - Asynchronous Mô-đun Definition, được sử dụng với bộ tải mô-đun như RequireJS
  • cjs - CommonJS, thích hợp cho Node và Browserify/Webpack
  • es - Giữ bó như một tập tin mô-đun ES
  • iife - Chức năng tự thực hiện, phù hợp để bao gồm dưới dạng thẻ. (Nếu bạn muốn tạo một gói cho ứng dụng của mình, bạn có thể muốn sử dụng điều này, vì nó dẫn đến tệp nhỏ hơn kích cỡ.) Umd - Định nghĩa Mô-đun Phổ, hoạt động như amd, cjs và iife tất cả trong một

để biết thêm thông tin chuyến thăm their documentation

giải pháp cho câu hỏi của tôi

Sử dụng định dạng iife, nó gói gọn trong phạm vi của mô-đun của tôi, do đó, một biên soạn test.js sẽ cho kết quả in:

(function() { 
'use strict'; 

console.log('Test'); 

}()); 

Cách tiếp cận hợp lý hơn để biên dịch ES modules tùy thuộc vào định dạng đầu ra.

Các vấn đề liên quan