build: 删除多余构建配置,构建ui

This commit is contained in:
roymondchen 2024-08-09 16:41:45 +08:00 committed by roymondchen
parent 3758cf8e0a
commit b00e7aec13
13 changed files with 55 additions and 98 deletions

View File

@ -17,8 +17,8 @@
"pg:vue2": "pnpm playground:vue2",
"playground:react": "pnpm --filter \"runtime-react\" build:libs && pnpm --filter \"runtime-react\" --filter \"tmagic-playground\" dev:react",
"pg:react": "pnpm playground:react",
"build": "pnpm build:dst && pnpm --filter \"@tmagic/*\" build",
"build:dst": "pnpm --filter \"@tmagic/cli\" build && tsc -p tsconfig.build-browser.json && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build-vue.json && rollup -c rollup.dts.config.js && rimraf temp",
"build": "pnpm build:dts && pnpm --filter \"@tmagic/*\" build",
"build:dts": "pnpm --filter \"@tmagic/cli\" build && tsc -p tsconfig.build-browser.json && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build-vue.json && rollup -c rollup.dts.config.js && rimraf temp",
"check:type": "tsc --incremental --noEmit -p tsconfig.check.json",
"build:playground": "pnpm --filter \"runtime-vue3\" build && pnpm --filter \"tmagic-playground\" build",
"docs:dev": "vitepress dev docs",

View File

@ -16,23 +16,11 @@
* limitations under the License.
*/
import path from 'path';
import { defineConfig } from 'vite';
import pkg from './package.json';
export default defineConfig({
resolve: {
alias:
process.env.NODE_ENV === 'production'
? []
: [
{ find: /^@tmagic\/schema/, replacement: path.join(__dirname, '../schema/src/index.ts') },
{ find: /^@tmagic\/data-source/, replacement: path.join(__dirname, '../data-source/src/index.ts') },
],
},
build: {
cssCodeSplit: false,
sourcemap: false,

View File

@ -24,14 +24,7 @@ import pkg from './package.json';
export default defineConfig(({ mode }) => ({
resolve: {
alias:
process.env.NODE_ENV === 'production'
? [{ find: /^@data-source/, replacement: path.join(__dirname, './src') }]
: [
{ find: /^@data-source/, replacement: path.join(__dirname, './src') },
{ find: /^@tmagic\/dep/, replacement: path.join(__dirname, '../dep/src/index.ts') },
{ find: /^@tmagic\/schema/, replacement: path.join(__dirname, '../schema/src/index.ts') },
],
alias: [{ find: /^@data-source/, replacement: path.join(__dirname, './src') }],
},
build: {

View File

@ -15,21 +15,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import path from 'path';
import { defineConfig } from 'vite';
import pkg from './package.json';
export default defineConfig({
resolve: {
alias:
process.env.NODE_ENV === 'production'
? []
: [{ find: /^@tmagic\/schema/, replacement: path.join(__dirname, '../schema/src/index.ts') }],
},
build: {
sourcemap: false,
minify: false,

View File

@ -24,14 +24,6 @@ import pkg from './package.json';
export default defineConfig({
plugins: [vue()],
optimizeDeps: {
esbuildOptions: {
define: {
global: 'globalThis',
},
},
},
build: {
cssCodeSplit: false,
sourcemap: false,

View File

@ -27,25 +27,7 @@ export default defineConfig({
plugins: [vue()],
resolve: {
alias:
process.env.NODE_ENV === 'production'
? [{ find: /^@editor/, replacement: path.join(__dirname, './src') }]
: [
{ find: /^@editor/, replacement: path.join(__dirname, './src') },
{ find: /^@tmagic\/schema/, replacement: path.join(__dirname, '../schema/src/index.ts') },
{ find: /^@tmagic\/utils/, replacement: path.join(__dirname, '../utils/src/index.ts') },
{ find: /^@tmagic\/core/, replacement: path.join(__dirname, '../core/src/index.ts') },
{ find: /^@tmagic\/form/, replacement: path.join(__dirname, '../form/src/index.ts') },
{ find: /^@tmagic\/stage/, replacement: path.join(__dirname, '../stage/src/index.ts') },
],
},
optimizeDeps: {
esbuildOptions: {
define: {
global: 'globalThis',
},
},
alias: [{ find: /^@editor/, replacement: path.join(__dirname, './src') }],
},
build: {

View File

@ -16,8 +16,6 @@
* limitations under the License.
*/
import path from 'path';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
@ -26,16 +24,6 @@ import pkg from './package.json';
export default defineConfig({
plugins: [vue()],
resolve: {
alias:
process.env.NODE_ENV === 'production'
? []
: [
{ find: /^@tmagic\/utils/, replacement: path.join(__dirname, '../utils/src/index.ts') },
{ find: /^@tmagic\/design/, replacement: path.join(__dirname, '../design/src/index.ts') },
],
},
build: {
cssCodeSplit: false,
sourcemap: false,

View File

@ -15,25 +15,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import path from 'path';
import { defineConfig } from 'vite';
import pkg from './package.json';
export default defineConfig({
resolve: {
alias:
process.env.NODE_ENV === 'production'
? []
: [
{ find: /^@tmagic\/core/, replacement: path.join(__dirname, '../core/src/index.ts') },
{ find: /^@tmagic\/schema/, replacement: path.join(__dirname, '../schema/src/index.ts') },
{ find: /^@tmagic\/utils/, replacement: path.join(__dirname, '../utils/src/index.ts') },
],
},
build: {
cssCodeSplit: false,
sourcemap: false,

View File

@ -16,8 +16,6 @@
* limitations under the License.
*/
import path from 'path';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
@ -26,16 +24,6 @@ import pkg from './package.json';
export default defineConfig({
plugins: [vue()],
resolve: {
alias:
process.env.NODE_ENV === 'production'
? []
: [
{ find: /^@tmagic\/form/, replacement: path.join(__dirname, '../form/src/index.ts') },
{ find: /^@tmagic\/design/, replacement: path.join(__dirname, '../form/design/index.ts') },
],
},
build: {
cssCodeSplit: false,
sourcemap: false,

View File

@ -15,6 +15,9 @@
"engines": {
"node": ">=18"
},
"scripts": {
"build": "vite build"
},
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -0,0 +1,46 @@
/*
* Tencent is pleased to support the open source community by making TMagicEditor available.
*
* Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { defineConfig } from 'vite';
import pkg from './package.json';
export default defineConfig({
build: {
cssCodeSplit: false,
sourcemap: false,
minify: false,
target: 'esnext',
lib: {
entry: 'src/index.ts',
name: 'TMagicUi',
fileName: 'tmagic-ui',
},
rollupOptions: {
// 确保外部化处理那些你不想打包进库的依赖
external(id: string) {
return Object.keys({
...pkg.dependencies,
...pkg.peerDependencies,
}).some((k) => new RegExp(`^${k}`).test(id));
},
},
},
});

View File

@ -23,7 +23,7 @@ import pkg from './package.json';
export default defineConfig(({ mode }) => ({
build: {
cssCodeSplit: false,
sourcemap: true,
sourcemap: false,
minify: false,
target: 'esnext',
emptyOutDir: false,

View File

@ -13,5 +13,6 @@
"packages/stage/src",
"packages/utils/src",
"packages/element-plus-adapter/src",
"packages/ui/src",
]
}