91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue3?Vite進階rollup命令行怎么使用

發布時間:2022-08-23 11:12:03 來源:億速云 閱讀:370 作者:iii 欄目:開發技術

本篇內容介紹了“vue3 Vite進階rollup命令行怎么使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

    rollup介紹

    • 開源類庫優先選擇

    • 以 ESM 標準為目標的構建工具

    • Tree Shaking

    以命令行方式打包

    • 安裝 rollup

    npm install -g rollup
    • 創建 index.js 文件

    import path from "path";
    console.log("hello rollop", path.join("", "hello"));
    • 打包

    rollup -i index.js --file dist.js --format umd
    • --file:打包輸出文件

    • --format:打包格式(umd, cjs, es, iife)

    Tree Shaking

    只會打包我們用到的代碼,沒有用到的不會打包

    • 新建 a.js 文件

    export const funA = () => {
      console.log("a");
    };
    export const funB = () => {
      console.log("b");
    };
    • index.js 引入 a.js

    import { funA } from "./a";
    funA();
    console.log("hello rollup");
    • 打包文件

    rollup -i index.js --file dist.js --format es

    輸出代碼,代碼進行了合并,并且只打包了用到的代碼

    const funA = () => {
      console.log("a");
    };
    funA();
    console.log("hello rollop");

    Rollup 的命令行使用

    index.js 文件

    import path from "path";
    import { funA } from "./a";
    funA();
    console.log("hello rollop", path.join(__dirname, "/hello"));
    export const x = 12;

    a.js 文件

    export const funA = () => {
      console.log("a");
    };
    export const funB = () => {
      console.log("b");
    };

    命令行

    rollup [options] <entry file>  選項 輸入文件
    --help 幫助文檔
    -v, --version 查看版本
    -i, --input <filename> 輸入單個文件
    -f, --format <format> 輸出格式
    -o, --file <output>  輸出單個文件
    -d, --dir <dirname>  輸出多個文件
    -w, --watch 監聽文件改變,并重新打包
    -c, --config <filename> 指定配置文件使用
    --environment <values>  指定環境變量
    • 輸出多個文件

    rollup -i index.js -i a.js --dir dist
    format 格式
    • iife 輸出自執行函數

    rollup -i index.js --format iife
    index.js → stdout...
    Creating a browser bundle that depends on "path". You might need to include https://github.com/snowpackjs/rollup-plugin-polyfill-node
    var index = (function (exports, path) {
      'use strict';
      function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
      var path__default = /*#__PURE__*/_interopDefaultLegacy(path);
      const funA = () => {
        console.log("a");
      };
      funA();
      console.log("hello rollop", path__default["default"].join(__dirname, "/hello"));
      const x = 12;
      exports.x = x;
      Object.defineProperty(exports, '__esModule', { value: true });
      return exports;
    })({}, path);
    • cjs 輸出 commonJs 格式

    rollup -i index.js --format cjs
    index.js → stdout...
    'use strict';
    Object.defineProperty(exports, '__esModule', { value: true });
    var path = require('path');
    function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
    var path__default = /*#__PURE__*/_interopDefaultLegacy(path);
    const funA = () => {
      console.log("a");
    };
    funA();
    console.log("hello rollop", path__default["default"].join(__dirname, "/hello"));
    const x = 12;
    exports.x = x;
    • es 輸出 esModule 格式

    rollup -i index.js --format es
    index.js → stdout...
    import path from 'path';
    const funA = () => {
      console.log("a");
    };
    funA();
    console.log("hello rollop", path.join(__dirname, "/hello"));
    const x = 12;
    export { x };
    • umd 輸出兼容 iife、cjs、es 格式的文件

    rollup -i index.js --format umd --name index
    index.js → stdout...
    (function (global, factory) {
      typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('path')) :
      typeof define === 'function' && define.amd ? define(['exports', 'path'], factory) :
      (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.index = {}, global.path));
    })(this, (function (exports, path) { 'use strict';
      function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
      var path__default = /*#__PURE__*/_interopDefaultLegacy(path);
      const funA = () => {
        console.log("a");
      };
      funA();
      console.log("hello rollop", path__default["default"].join(__dirname, "/hello"));
      const x = 12;
      exports.x = x;
      Object.defineProperty(exports, '__esModule', { value: true });
    }));
    • umd 格式要指明 全局變量名 --name

     rollup -i index.js --file dist.js --format umd --name index

    rollup.config.js

    export default {
      input: "index.js",
      output: {
        file: "dist.js",
        format: "umd",
        name: "index",
      },
    };
    • 執行配置文件

    rollup --config rollup.config.js
    設置/獲取環境變量

    在配置文件中獲取

    // rollup.config.js
    console.log(process.env.MODE);
    const mode = process.env.MODE;
    const isLocal = mode === "local";
    export default {
      input: "index.js",
      output: {
        file: "dist.js",
        format: isLocal ? "es" : "umd",
        name: "index",
      },
    };
    • 執行命令

    rollup --config rollup.config.js --environment MODE:local

    插件 plugins

    • 修改 index.js

    import path from "path";
    import { funA } from "./a";
    import pkg from "./package.json";
    console.log(pkg);
    funA();
    console.log("hello rollop", path.join(__dirname, "/hello"));
    export const x = 12;
    • json 文件轉為 esModule

    npm install @rollup/plugin-json --save-dev 
    npm install rollup
    • 由于 json 插件是安裝在本地,所以執行本地的 rollup 來找到對應的插件

    ./node_modules/.bin/rollup --config rollup.config.js --plugin json

    “vue3 Vite進階rollup命令行怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    上蔡县| 吴堡县| 九龙县| 和政县| 祁连县| 乐至县| 斗六市| 穆棱市| 民勤县| 吐鲁番市| 寿光市| 长岛县| 睢宁县| 兰西县| 蓝山县| 揭阳市| 勃利县| 莫力| 博罗县| 巩义市| 棋牌| 吉首市| 那坡县| 河东区| 四川省| 高淳县| 桃园市| 泉州市| 资阳市| 苍梧县| 鹤山市| 威信县| 柯坪县| 体育| 桦川县| 湛江市| 海宁市| 成武县| 封丘县| 霍州市| 永济市|