中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Vue3怎么使用glup打包組件庫并實現按需加載

發布時間:2023-03-23 15:54:23 來源:億速云 閱讀:118 作者:iii 欄目:開發技術

這篇文章主要介紹“Vue3怎么使用glup打包組件庫并實現按需加載”,在日常操作中,相信很多人在Vue3怎么使用glup打包組件庫并實現按需加載問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Vue3怎么使用glup打包組件庫并實現按需加載”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

使用 glup 打包組件庫并實現按需加載

當我們使用 Vite 庫模式打包的時候,vite 會將樣式文件全部打包到同一個文件中,這樣的話我們每次都要全量引入所有樣式文件做不到按需引入的效果。所以打包的時候我們可以不讓 vite 打包樣式文件,樣式文件將使用 gulp 進行打包。那么本篇文章將介紹如何使用 gulp 打包樣式文件,以及如何按需加載樣式文件。

自動按需引入插件

現在很多組件庫的按需引入都是借助插件來解決的,比如ElementPlus是使用unplugin-vue-componentsunplugin-auto-import,這兩個插件可以實現

import { Button } from "easyest";

//相當于
import "easyest/es/src/button/style/index.css";
import "easyest/es/src/button/index.mjs";

從而實現按需引入,這里不再過多展開這些插件的使用,因為本篇文章的重點不在這里,感興趣的可以直接去查詢使用方式unplugin-vue-components

刪除打包文件

我們都知道,在打包之前是需要將前面打包的文件刪除的,所以需要先寫一個刪除函數。在此之前,我們先在 components 新建一個 script 文件夾用于存放我們的腳本相關內容,script 下的 build 文件夾里的內容則是本篇文章要介紹的打包相關內容。

在 script/utils 中新建 paths.ts 用于維護組件庫路徑,記得先安裝

pnpm add @types/node -D -w
import { resolve } from "path";

//組件庫根目錄
export const componentPath = resolve(__dirname, "../../");

//pkg根目錄
export const pkgPath = resolve(__dirname, "../../../");

刪除打包目錄函數可以放在 bulid/utils 中的 delpath.ts,注意這里因為打包后的 easyest 包是我們最終要發布的包,所以我們需要將package.jsonREADME.md保留下來

import fs from "fs";
import { resolve } from "path";
import { pkgPath } from "./paths";
//保留的文件
const stayFile = ["package.json", "README.md"];

const delPath = async (path: string) => {
  let files: string[] = [];

  if (fs.existsSync(path)) {
    files = fs.readdirSync(path);

    files.forEach(async (file) => {
      let curPath = resolve(path, file);

      if (fs.statSync(curPath).isDirectory()) {
        // recurse
        if (file != "node_modules") await delPath(curPath);
      } else {
        // delete file
        if (!stayFile.includes(file)) {
          fs.unlinkSync(curPath);
        }
      }
    });

    if (path != `${pkgPath}/easyest`) fs.rmdirSync(path);
  }
};
export default delPath;

使用 gulp

我們需要使用 ts 以及新的 es6 語法,而 gulp 是不支持的,所以我們需要安裝一些依賴使得 gulp 支持這些,其中 sucras 讓我們執行 gulp 可以使用最新語法并且支持 ts

pnpm i gulp @types/gulp sucrase -D -w

在 build/index.ts 來執行刪除流程

import delPath from "../utils/delpath";
import { series, parallel } from "gulp";
import { pkgPath } from "../utils/paths";
//刪除easyest

export const removeDist = () => {
  return delPath(`${pkgPath}/easyest`);
};

export default series(async () => removeDist());

在根目錄 easyest/package.json 添加腳本

  "scripts": {
    "build:easyest": "gulp -f packages/components/script/build/index.ts"
  },

根目錄下執行pnpm run build:easyest就會發現 easyest 下的文件被刪除了

Vue3怎么使用glup打包組件庫并實現按需加載

刪除完之后就可以開始打包樣式了

gulp 打包樣式

因為我們用的是 less 寫的樣式,所以需要安裝gulp-less,同時在安裝一個自動補全 css 前綴插件gulp-autoprefixer以及它們對應的上面文件

pnpm add gulp-less @types/gulp-less gulp-autoprefixer @types/gulp-autoprefixer -D -w

然后寫一個打包樣式的函數,這里使用到了 gulp 的destsrc函數,不知道什么意思的樂意看上一篇文章 gulp 的介紹

//打包樣式
export const buildStyle = () => {
  return src(`${componentPath}/src/**/style/**.less`)
    .pipe(less())
    .pipe(autoprefixer())
    .pipe(dest(`${pkgPath}/easyest/lib/src`))
    .pipe(dest(`${pkgPath}/easyest/es/src`));
};

打包組件

最后再寫一個打包組件的函數,這里需要寫一個執行命令的工具函數,在 utils/run.ts

import { spawn } from "child_process";

export default async (command: string, path: string) => {
  //cmd表示命令,args代表參數,如 rm -rf  rm就是命令,-rf就為參數
  const [cmd, ...args] = command.split(" ");
  return new Promise((resolve, reject) => {
    const app = spawn(cmd, args, {
      cwd: path, //執行命令的路徑
      stdio: "inherit", //輸出共享給父進程
      shell: true, //mac不需要開啟,windows下git base需要開啟支持
    });
    //執行完畢關閉并resolve
    app.on("close", resolve);
  });
};

然后引入 run 函數

//打包組件
export const buildComponent = async () => {
  run("pnpm run build", componentPath);
};

因為打包樣式和打包組件可以并行,所以最后build/index.ts

import delPath from "../utils/delpath";
import { series, parallel, src, dest } from "gulp";
import { pkgPath, componentPath } from "../utils/paths";
import less from "gulp-less";
import autoprefixer from "gulp-autoprefixer";
import run from "../utils/run";
//刪除dist

export const removeDist = () => {
  return delPath(`${pkgPath}/easyest`);
};

//打包樣式
export const buildStyle = () => {
  return src(`${componentPath}/src/**/style/**.less`)
    .pipe(less())
    .pipe(autoprefixer())
    .pipe(dest(`${pkgPath}/easyest/lib/src`))
    .pipe(dest(`${pkgPath}/easyest/es/src`));
};

//打包組件
export const buildComponent = async () => {
  run("pnpm run build", componentPath);
};
export default series(
  async () => removeDist(),
  parallel(
    async () => buildStyle(),
    async () => buildComponent()
  )
);

最后 vite 打包的時候忽略 less 文件,components/vite.config.ts

import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import dts from "vite-plugin-dts";
import DefineOptions from "unplugin-vue-define-options/vite";
export default defineConfig({
  build: {
    //打包文件目錄
    outDir: "es",
    //壓縮
    //minify: false,
    rollupOptions: {
      //忽略打包vue和.less文件
      external: ["vue", /\.less/],
      ...
  }

});

為了更好的看打包后的效果,我們可以再寫一個簡單的 Icon 組件,目錄如下

Vue3怎么使用glup打包組件庫并實現按需加載

最后根目錄執行pnpm run build,即可完成打包

Vue3怎么使用glup打包組件庫并實現按需加載

由于 vite 打包忽略了 less 文件打包,所以打包后的文件遇到.less 文件的引入會自動跳過,所以引入代碼沒變

Vue3怎么使用glup打包組件庫并實現按需加載

但是我們已經將 less 文件打包成 css 文件了,所以我們需要將代碼中的.less換成.css

在 components/vite.config.ts 中的 plugins 中新增

 plugins: [
    vue(),
    DefineOptions(),
    dts({
      entryRoot: "./src",
      outputDir: ["../easyest/es/src", "../easyest/lib/src"],
      //指定使用的tsconfig.json為我們整個項目根目錄下,如果不配置,你也可以在components下新建tsconfig.json
      tsConfigFilePath: "../../tsconfig.json",
    }),
    {
      name: "style",
      generateBundle(config, bundle) {
        //這里可以獲取打包后的文件目錄以及代碼code
        const keys = Object.keys(bundle);

        for (const key of keys) {
          const bundler: any = bundle[key as any];
          //rollup內置方法,將所有輸出文件code中的.less換成.css,因為我們當時沒有打包less文件

          this.emitFile({
            type: "asset",
            fileName: key, //文件名名不變
            source: bundler.code.replace(/\.less/g, ".css"),
          });
        }
      },
    },
  ],

此時執行pnpm run build:easyest,然后再看打包后文件引入

Vue3怎么使用glup打包組件庫并實現按需加載

此時.less已經被替換成了.css,打包完畢,接下來要做的就是發布了!

到此,關于“Vue3怎么使用glup打包組件庫并實現按需加載”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

堆龙德庆县| 永泰县| 华容县| 鹤峰县| 田阳县| 阳曲县| 宜宾县| 溧水县| 吉隆县| 梨树县| 周至县| 磴口县| 南宁市| 武威市| 五峰| 阳原县| 即墨市| 黄石市| 莒南县| 临高县| 昔阳县| 彭山县| 太仓市| 黑山县| 于田县| 昆明市| 山东省| 阿拉善右旗| 阳原县| 汶川县| 上虞市| 西乌珠穆沁旗| 中阳县| 兴文县| 开鲁县| 灵川县| 垣曲县| 福建省| 南充市| 固安县| 临江市|