簡體   English   中英

Vue Typescript 組件庫 - 使用 Webpack 和 SASS

[英]Vue Typescript component library - Working with Webpack and SASS

我目前正在為一家公司構建 Vue UI 組件庫,在此過程中,我使用 webpack 作為默認捆綁器。 我想將整個項目構建到 npm package 中,然后可以通過私有 git ZEFE90A8E604A7C8B740 分發存儲庫。 package 發行版已啟動並運行,但我似乎無法以正確的方式導出組件,因此可以在另一個項目中使用。

使用的不同工具的版本:

npm:6.14.4

節點:12.17.0

紗線:1.22.0

@vue/cli:4.4.1

tsc:3.9.5

項目結構如下:

public
src
 - assets
  | - css
  |  | - tailwind.css
  | - fonts
  |  | - stylesheet.css
 - component
  | - LbButton
  |  | - LbButton.vue
  |  | - index.ts
  | - Lbtag
  |  | - LbTag.vue
  |  | - index.ts
  | - ...
 - theme
  | - index.ts
  | - Theme.ts
 - typedefs
  | - types.ts
  | - events.ts
  | - model.ts
  | - states.ts
 - views
  | - Home.vue
 - App.vue
 - index.ts
 - main.ts
 - plugin.ts
 - shims-vue.d.ts
vue.config.js
tailwind.config.js
tsconfig.json
postcss.config.js
babel.config.js
package.json

當前設置包含以下配置:

package.json

  ...
  "main": "./dist/@livebackend/ui.common.js",
  ...
  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build --target lib --name @livebackend/ui src/index.ts ",
    "test:unit": "vue-cli-service test:unit"
  },
  "files": [
    "dist/*",
    "src/*",
    "public/*",
    "*.json",
    "*.vue",
    "*.ts",
    "*.js"
  ],
  "dependencies": {
    "@kazupon/vue-i18n-loader": "^0.5.0",
    "@types/lodash": "^4.14.152",
    "@types/vue-i18n": "^7.0.0",
    "@types/vue-select": "^2.5.0",
    "core-js": "^3.6.4",
    "date-fns": "^2.14.0",
    "lodash": "^4.17.15",
    "v-calendar": "^1.0.6",
    "vue": "^2.6.11",
    "vue-class-component": "^7.2.3",
    "vue-i18n": "^8.18.1",
    "vue-infinite-loading": "^2.4.5",
    "vue-property-decorator": "^8.4.1",
    "vue-select": "^3.10.3",
    "vuex": "^3.1.3",
    "vuex-class": "^0.3.2"
  },
  "peerDependencies": {
    "@vue/composition-api": "^0.6.7"
  },
  "devDependencies": {
    "@types/chai": "^4.2.11",
    "@types/mocha": "^5.2.4",
    "@vue/cli-plugin-babel": "~4.3.0",
    "@vue/cli-plugin-typescript": "~4.3.0",
    "@vue/cli-plugin-unit-mocha": "~4.3.0",
    "@vue/cli-plugin-vuex": "~4.3.0",
    "@vue/cli-service": "~4.3.0",
    "@vue/composition-api": "^0.6.7",
    "@vue/test-utils": "1.0.0-beta.31",
    "chai": "^4.1.2",
    "node-sass": "^4.14.1",
    "sass": "^1.26.5",
    "sass-loader": "^8.0.2",
    "style-loader": "^1.2.1",
    "tailwindcss": "1.4.6",
    "ts-loader": "^7.0.5",
    "typescript": "~3.9.5",
    "vue-style-loader": "^4.1.2",
    "vue-template-compiler": "^2.6.11"
  },
  "version": "0.4.8"
}

tsconfig

{
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "strict": true,
    "declaration": true,
    "importHelpers": true,
    "moduleResolution": "node",
    "noImplicitAny": false,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "sourceMap": true,
    "baseUrl": ".",
    "types": [
      "webpack-env"
    ],
    "paths": {
      "@/*": [
        "src/*"
      ]
    },
    "lib": [
      "esnext",
      "dom",
      "dom.iterable",
      "scripthost"
    ]
  },
  "include": [
    "src/**/*.ts",
    "src/**/*.vue"
  ],
  "files": [
    "src/vue-shims.d.ts"
  ],
  "exclude": [
    "node_modules"
  ]
}

vue.config.js

module.exports = {
  publicPath: "./src",
  devServer: {
    proxy: "http://localhost:3000"
  },
  chainWebpack: config => {
    config.plugins.delete("optimize-css");
  },
  configureWebpack: {
    module: {
      rules: [
        {
          resourceQuery: /blockType=i18n/,
          type: "javascript/auto",
          loader: "@kazupon/vue-i18n-loader"
        }
      ]
    }
  }
};

tailwind.config.js

const settings = {
  theme: {},
  variants: {},
  plugins: []
};

if (process.env.NODE_ENV === "production") {
  settings.purge = ["./src/**/*.html", "./src/**/*.vue", "./src/**/*.jsx"];
}

module.exports = settings;

src/index.ts

export { default as Theme } from "./theme";
export { default as LbButton } from "./components/lbButton";
export { default as LbInputField } from "./components/lbInputField";
export { default as LbIconButton } from "./components/lbIconButton";
export { default as LbTag } from "./components/lbTag";
export { default as LbCard } from "./components/lbCard";
export { default as LbFB } from "./components/lbFB";
export { default as LbDatePicker } from "./components/lbDatePicker";
export { default as LbRadio } from "./components/lbRadio";
export { default as LbLoading } from "./components/lbLoading";
export { default as LbSlider } from "./components/lbSlider";
export { default as LbSwitch } from "./components/lbSwitch";
export { default as LbTable } from "./components/lbTable";
import plugin from "./plugin";
export default plugin; 

主要的.ts

import Vue from "vue";
import VueI18n from "vue-i18n";
import vSelect from "vue-select";
import VCalendar from "v-calendar";
import "@/assets/css/tailwind.css";
import "@/assets/fonts/stylesheet.css";
import "vue-select/dist/vue-select.css";
import InfiniteLoading from "vue-infinite-loading";

import App from "./App.vue";
import messages from "./tranlations";

Vue.config.productionTip = false;

Vue.component("v-select", vSelect);
Vue.use(VCalendar, {
  componentPrefix: "v" 
});
Vue.use(VueI18n);
Vue.use(InfiniteLoading);

const i18n = new VueI18n({
  locale: "en",
  messages
});

new Vue({
  i18n,
  render: h => h(App)
}).$mount("#app");

如果我需要發布更多文件,請隨時詢問。 當我將所有這些捆綁在一起並將其包含在諸如import { LbButton } from "@livebackend/ui"類的項目中時,我收到一個錯誤,告訴我 vue 找不到類型聲明或模塊。 然后當我嘗試從"@livebackend/ui/src"導入它時,我收到另一個錯誤,告訴我 vue 無法弄清楚“@”的含義。 我使用“@”來查找項目中的相關模塊。

有沒有人以前遇到過這些問題?

我也在搜索相同的信息並發現了這個問題,我嘗試了很多回購和博客/教程, https://github.com/team-innovation/vue-sfc-rollup是我迄今為止找到的最好的解決方案,但是一旦我將使用它更長時間,我將更新此答案。 我昨天才開始,我正在將功能一個一個放在那里,看看我是否擊中了一些東西。

編輯:2020 年 11 月 2 日

我不得不把

configureWebpack: {
  resolve: {
      alias: {
        vue: path.resolve("./node_modules/vue")
      }
    }
}

修復問題[Vue warn]: $listeners is read-only.

參考: https://github.com/team-innovation/vue-sfc-rollup/issues/26

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM