mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat: 对齐 webpack 和 vite 文件输出
This commit is contained in:
parent
ee2e79c004
commit
852aad294c
22
deploy.sh
22
deploy.sh
@ -1,22 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
# 确保脚本抛出遇到的错误
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# 生成静态文件
|
|
||||||
npm run build
|
|
||||||
|
|
||||||
# 进入生成的文件夹
|
|
||||||
cd docs/.vuepress/dist
|
|
||||||
|
|
||||||
# 如果是发布到自定义域名
|
|
||||||
# echo 'www.example.com' > CNAME
|
|
||||||
|
|
||||||
git init
|
|
||||||
git add -A
|
|
||||||
git commit -m 'deploy'
|
|
||||||
|
|
||||||
# 如果发布到 https://<USERNAME>.github.io/<REPO>
|
|
||||||
git push -f https://github.com/WeBankFinTech/fes.js.git master:gh-pages
|
|
||||||
|
|
||||||
cd -
|
|
@ -9,10 +9,10 @@
|
|||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"bootstrap": "pnpm i",
|
"bootstrap": "pnpm i",
|
||||||
"clean": "rm -rf packages/**/node_modules & rm -rf node_modules",
|
|
||||||
"dev": "node scripts/build.mjs --watch",
|
"dev": "node scripts/build.mjs --watch",
|
||||||
"build": "node scripts/build.mjs",
|
"build": "node scripts/build.mjs",
|
||||||
"release": "node scripts/release.mjs",
|
"release": "node scripts/release.mjs",
|
||||||
|
"clean": "rm pnpm-lock.yaml & rm -rf node_modules & rm -rf packages/**/node_modules & rm -rf packages/**/.cache",
|
||||||
"docs:dev": "vuepress dev docs --clean-cache",
|
"docs:dev": "vuepress dev docs --clean-cache",
|
||||||
"docs:build": "vuepress build docs --clean-cache",
|
"docs:build": "vuepress build docs --clean-cache",
|
||||||
"test": "fes test",
|
"test": "fes test",
|
||||||
|
@ -46,6 +46,7 @@ export default async (api) => {
|
|||||||
terserOptions: build.terserOptions || api.config.terserOptions,
|
terserOptions: build.terserOptions || api.config.terserOptions,
|
||||||
target: build.target || getEsbuildTarget(targets),
|
target: build.target || getEsbuildTarget(targets),
|
||||||
outDir: build.outDir || api.config.outputPath || 'dist',
|
outDir: build.outDir || api.config.outputPath || 'dist',
|
||||||
|
assetsDir: build.assetsDir || 'static',
|
||||||
assetsInlineLimit: build.assetsInlineLimit || api.config.inlineLimit || 8192,
|
assetsInlineLimit: build.assetsInlineLimit || api.config.inlineLimit || 8192,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -93,8 +93,8 @@ export default function createCssWebpackConfig({ isDev, config, webpackConfig, b
|
|||||||
if (!isDev) {
|
if (!isDev) {
|
||||||
webpackConfig.plugin('extra-css').use(require.resolve('mini-css-extract-plugin'), [
|
webpackConfig.plugin('extra-css').use(require.resolve('mini-css-extract-plugin'), [
|
||||||
{
|
{
|
||||||
filename: '[name].[contenthash:8].css',
|
filename: 'static/[name].[contenthash:8].css',
|
||||||
chunkFilename: '[id].[contenthash:8].css',
|
chunkFilename: 'static/[id].[contenthash:8].css',
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
webpackConfig.optimization.minimizer('css').use(require.resolve('css-minimizer-webpack-plugin'), [{}]);
|
webpackConfig.optimization.minimizer('css').use(require.resolve('css-minimizer-webpack-plugin'), [{}]);
|
||||||
|
@ -77,8 +77,8 @@ export default async function getConfig({ api, cwd, config, env, entry = {}, mod
|
|||||||
webpackConfig.output
|
webpackConfig.output
|
||||||
.path(absoluteOutput)
|
.path(absoluteOutput)
|
||||||
.publicPath(publicPath || '/')
|
.publicPath(publicPath || '/')
|
||||||
.filename('[name].[contenthash:8].js')
|
.filename('static/[name].[contenthash:8].js')
|
||||||
.chunkFilename('[name].[contenthash:8].chunk.js');
|
.chunkFilename('static/[name].[contenthash:8].chunk.js');
|
||||||
|
|
||||||
// --------------- resolve -----------
|
// --------------- resolve -----------
|
||||||
webpackConfig.resolve.extensions.merge(['.mjs', '.js', '.jsx', '.vue', '.ts', '.tsx', '.json', '.wasm']);
|
webpackConfig.resolve.extensions.merge(['.mjs', '.js', '.jsx', '.vue', '.ts', '.tsx', '.json', '.wasm']);
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@swc/core": "^1.3.37",
|
"@swc/core": "^1.3.37",
|
||||||
"@swc/css": "^0.0.20",
|
"@swc/css": "^0.0.20",
|
||||||
"swc-plugin-vue-jsx": "^0.2.0",
|
"swc-plugin-vue-jsx": "^0.2.1",
|
||||||
"swc-loader": "^0.2.3",
|
"swc-loader": "^0.2.3",
|
||||||
"@fesjs/utils": "^3.0.0-rc.2",
|
"@fesjs/utils": "^3.0.0-rc.2",
|
||||||
"terser-webpack-plugin": "^5.3.6",
|
"terser-webpack-plugin": "^5.3.6",
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
html {
|
html {
|
||||||
body {
|
body {
|
||||||
|
margin: 0px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,11 +2,7 @@ import { defineBuildConfig } from '@fesjs/fes';
|
|||||||
|
|
||||||
export default defineBuildConfig({
|
export default defineBuildConfig({
|
||||||
swc: {
|
swc: {
|
||||||
loader: {
|
loader: {},
|
||||||
env: {
|
|
||||||
coreJs: '3.27',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
targets: {
|
targets: {
|
||||||
chrome: '78',
|
chrome: '78',
|
||||||
|
7428
pnpm-lock.yaml
generated
7428
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -44,11 +44,15 @@ const arrToObj = (arr, key) =>
|
|||||||
async function publishPackage(pkg, runIfNotDry) {
|
async function publishPackage(pkg, runIfNotDry) {
|
||||||
step(`Publishing ${pkg.name}...`);
|
step(`Publishing ${pkg.name}...`);
|
||||||
try {
|
try {
|
||||||
|
let _releaseTag;
|
||||||
|
if (pkg.newVersion.includes('-')) {
|
||||||
|
_releaseTag = 'next';
|
||||||
|
}
|
||||||
await runIfNotDry(
|
await runIfNotDry(
|
||||||
// note: use of pnpm is intentional here as we rely on its publishing
|
// note: use of pnpm is intentional here as we rely on its publishing
|
||||||
// behavior.
|
// behavior.
|
||||||
'npm',
|
'npm',
|
||||||
['publish', '--access', 'public', '--registry', 'https://registry.npmjs.org'],
|
['publish', ...(_releaseTag ? ['--tag', _releaseTag] : []), '--access', 'public', '--registry', 'https://registry.npmjs.org'],
|
||||||
{
|
{
|
||||||
cwd: getPkgRoot(pkg.dirName),
|
cwd: getPkgRoot(pkg.dirName),
|
||||||
stdio: 'pipe',
|
stdio: 'pipe',
|
||||||
@ -94,13 +98,13 @@ function updatePackage(pkgName, version, pkgs) {
|
|||||||
pkgJson.dependencies &&
|
pkgJson.dependencies &&
|
||||||
Object.keys(pkgJson.dependencies).forEach((npmName) => {
|
Object.keys(pkgJson.dependencies).forEach((npmName) => {
|
||||||
if (pkgs[npmName]) {
|
if (pkgs[npmName]) {
|
||||||
pkgJson.dependencies[npmName] = pkgs[npmName].newVersion;
|
pkgJson.dependencies[npmName] = `^${pkgs[npmName].newVersion}`;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
pkgJson.peerDependencies &&
|
pkgJson.peerDependencies &&
|
||||||
Object.keys(pkgJson.peerDependencies).forEach((npmName) => {
|
Object.keys(pkgJson.peerDependencies).forEach((npmName) => {
|
||||||
if (pkgs[npmName]) {
|
if (pkgs[npmName]) {
|
||||||
pkgJson.peerDependencies[npmName] = pkgs[npmName].newVersion;
|
pkgJson.peerDependencies[npmName] = `^${pkgs[npmName].newVersion}`;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
writePackageJson(pkgName, pkgJson);
|
writePackageJson(pkgName, pkgJson);
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"composite": true,
|
"composite": true,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"declarationMap": true,
|
"declarationMap": true,
|
||||||
"lib": ["DOM", "ES2020"],
|
"lib": ["DOM", "ESNext"],
|
||||||
"module": "CommonJS",
|
"module": "CommonJS",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"newLine": "lf",
|
"newLine": "lf",
|
||||||
@ -14,6 +14,6 @@
|
|||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
"target": "ES2018"
|
"target": "ESNext"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user