diff --git a/build.config.js b/build.config.js index 9e546dec..1c964ad4 100644 --- a/build.config.js +++ b/build.config.js @@ -18,6 +18,7 @@ module.exports = { 'fes-plugin-sass', 'fes-plugin-vuex', 'fes-preset-built-in', + 'fes-plugin-windicss', 'fes-runtime', 'fes-utils' ], diff --git a/docs/.vuepress/configs/sidebar/en.ts b/docs/.vuepress/configs/sidebar/en.ts index b4128596..2a45f895 100644 --- a/docs/.vuepress/configs/sidebar/en.ts +++ b/docs/.vuepress/configs/sidebar/en.ts @@ -61,6 +61,7 @@ export const en: SidebarConfig = { '/reference/plugin/plugins/request.md', '/reference/plugin/plugins/vuex.md', '/reference/plugin/plugins/qiankun.md', + '/reference/plugin/plugins/windicss.md', '/reference/plugin/plugins/sass.md', '/reference/plugin/plugins/editor.md', ], diff --git a/docs/.vuepress/configs/sidebar/zh.ts b/docs/.vuepress/configs/sidebar/zh.ts index 6991f9c6..00963d75 100644 --- a/docs/.vuepress/configs/sidebar/zh.ts +++ b/docs/.vuepress/configs/sidebar/zh.ts @@ -61,6 +61,7 @@ export const zh: SidebarConfig = { '/zh/reference/plugin/plugins/request.md', '/zh/reference/plugin/plugins/vuex.md', '/zh/reference/plugin/plugins/qiankun.md', + '/zh/reference/plugin/plugins/windicss.md', '/zh/reference/plugin/plugins/sass.md', '/zh/reference/plugin/plugins/editor.md', ], diff --git a/docs/reference/plugin/plugins/windicss.md b/docs/reference/plugin/plugins/windicss.md new file mode 100644 index 00000000..77992602 --- /dev/null +++ b/docs/reference/plugin/plugins/windicss.md @@ -0,0 +1,28 @@ +# @fesjs/plugin-windicss + + +## 介绍 + +`windicss` 支持 + +## 启用方式 +在 `package.json` 中引入依赖: +```json +{ + "devDependencies": { + "@fesjs/plugin-windicss": "^2.0.0" + }, +} +``` + +## 配置 + +在 `.fes.js` 配置文件中添加自定义配置,详细配置[请看](https://windicss.org/integrations/webpack.html): + +``` +{ + windicss: { + root: './', + } +} +``` diff --git a/docs/zh/reference/plugin/plugins/windicss.md b/docs/zh/reference/plugin/plugins/windicss.md new file mode 100644 index 00000000..be28d80b --- /dev/null +++ b/docs/zh/reference/plugin/plugins/windicss.md @@ -0,0 +1,28 @@ +# @fesjs/plugin-windicss + + +## 介绍 + +`windicss` 支持 + +## 启用方式 +在 `package.json` 中引入依赖: +```json +{ + "devDependencies": { + "@fesjs/plugin-windicss": "^2.0.0" + }, +} +``` + +## 配置 + +在 `.fes.js` 配置文件中添加自定义配置,详细配置[请看](https://windicss.org/integrations/webpack.html): + +```js +export default { + windicss: { + root: './', + } +} +``` diff --git a/packages/fes-plugin-windicss/.fatherrc.js b/packages/fes-plugin-windicss/.fatherrc.js new file mode 100644 index 00000000..332f1bff --- /dev/null +++ b/packages/fes-plugin-windicss/.fatherrc.js @@ -0,0 +1,3 @@ +export default { + disableTypeCheck: false, +}; diff --git a/packages/fes-plugin-windicss/LICENSE b/packages/fes-plugin-windicss/LICENSE new file mode 100644 index 00000000..0978fbf7 --- /dev/null +++ b/packages/fes-plugin-windicss/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020-present webank + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/fes-plugin-windicss/package.json b/packages/fes-plugin-windicss/package.json new file mode 100644 index 00000000..b9ec0e65 --- /dev/null +++ b/packages/fes-plugin-windicss/package.json @@ -0,0 +1,35 @@ +{ + "name": "@fesjs/plugin-windicss", + "version": "2.0.0", + "description": "@fesjs/plugin-windicss", + "main": "lib/index.js", + "files": [ + "lib" + ], + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/WeBankFinTech/fes.js.git", + "directory": "packages/fes-plugin-windicss" + }, + "keywords": [ + "fes" + ], + "author": "qlin", + "license": "MIT", + "bugs": { + "url": "https://github.com/WeBankFinTech/fes.js/issues" + }, + "homepage": "https://github.com/WeBankFinTech/fes.js#readme", + "publishConfig": { + "access": "public" + }, + "peerDependencies": { + "vue": "^3.0.5" + }, + "dependencies": { + "windicss-webpack-plugin": "^1.5.8" + } +} \ No newline at end of file diff --git a/packages/fes-plugin-windicss/src/index.js b/packages/fes-plugin-windicss/src/index.js new file mode 100644 index 00000000..27054df9 --- /dev/null +++ b/packages/fes-plugin-windicss/src/index.js @@ -0,0 +1,25 @@ + +import WindiCSSWebpackPlugin from 'windicss-webpack-plugin'; +import { resolve } from 'path'; + + +export default (api) => { + api.describe({ + key: 'windicss', + config: { + default: {} + } + }); + + api.addEntryImportsAhead(() => [{ source: 'windi.css' }]); + + api.chainWebpack((memo) => { + memo.plugin('windicss').use(WindiCSSWebpackPlugin, [ + { + config: resolve(__dirname, '../windi.config.js'), + ...api.config.windicss + } + ]); + return memo; + }); +}; diff --git a/packages/fes-plugin-windicss/windi.config.js b/packages/fes-plugin-windicss/windi.config.js new file mode 100644 index 00000000..7436c3ab --- /dev/null +++ b/packages/fes-plugin-windicss/windi.config.js @@ -0,0 +1,8 @@ +export default { + extract: { + // A common use case is scanning files from the root directory + include: ['**/*.{vue,jsx,js,ts,tsx}'], + // if you are excluding files, make sure you always include node_modules and .git + exclude: ['node_modules', '.git', 'dist'] + } +}; diff --git a/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/vue.js b/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/vue.js index 66788475..99a8c1b8 100644 --- a/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/vue.js +++ b/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/vue.js @@ -16,6 +16,6 @@ export default function createVueWebpackConfig({ .end(); webpackConfig - .plugin('vue-loader') + .plugin('vue-loader-plugin') .use(require('vue-loader').VueLoaderPlugin); } diff --git a/packages/fes-template/package.json b/packages/fes-template/package.json index 40e01eeb..2810630b 100644 --- a/packages/fes-template/package.json +++ b/packages/fes-template/package.json @@ -58,6 +58,7 @@ "@fesjs/plugin-qiankun": "^2.0.0", "@fesjs/plugin-sass": "^2.0.0", "@fesjs/plugin-monaco-editor": "^2.0.0-beta.0", + "@fesjs/plugin-windicss": "^2.0.0", "ant-design-vue": "^2.2.0", "vue": "^3.0.5", "vuex": "^4.0.0" diff --git a/packages/fes-template/src/pages/index.vue b/packages/fes-template/src/pages/index.vue index 1fb60d14..62907123 100644 --- a/packages/fes-template/src/pages/index.vue +++ b/packages/fes-template/src/pages/index.vue @@ -2,7 +2,7 @@