element-plus/internal/build/gulpfile.ts

70 lines
1.7 KiB
TypeScript
Raw Normal View History

import path from 'path'
import { mkdir, copyFile } from 'fs/promises'
import { copy } from 'fs-extra'
2021-09-26 01:29:07 +08:00
import { series, parallel } from 'gulp'
import {
run,
runTask,
withTaskName,
buildOutput,
epOutput,
epPackage,
projRoot,
buildConfig,
} from './src'
import type { TaskFunction } from 'gulp'
import type { Module } from './src'
2021-12-10 23:48:21 +08:00
export const copyFiles = () =>
Promise.all([
copyFile(epPackage, path.join(epOutput, 'package.json')),
copyFile(
2021-12-10 23:48:21 +08:00
path.resolve(projRoot, 'README.md'),
path.resolve(epOutput, 'README.md')
),
2021-12-10 23:48:21 +08:00
copyFile(
path.resolve(projRoot, 'global.d.ts'),
2021-12-10 23:48:21 +08:00
path.resolve(epOutput, 'global.d.ts')
),
])
export const copyTypesDefinitions: TaskFunction = (done) => {
const src = path.resolve(buildOutput, 'types')
const copyTypes = (module: Module) =>
withTaskName(`copyTypes:${module}`, () =>
copy(src, buildConfig[module].output.path, { recursive: true })
)
return parallel(copyTypes('esm'), copyTypes('cjs'))(done)
}
export const copyFullStyle = async () => {
await mkdir(path.resolve(epOutput, 'dist'), { recursive: true })
await copyFile(
path.resolve(epOutput, 'theme-chalk/index.css'),
path.resolve(epOutput, 'dist/index.css')
)
}
2021-09-26 01:29:07 +08:00
export default series(
withTaskName('clean', () => run('pnpm run clean')),
withTaskName('createOutput', () => mkdir(epOutput, { recursive: true })),
2021-09-26 01:29:07 +08:00
parallel(
runTask('buildModules'),
2021-09-26 01:29:07 +08:00
runTask('buildFullBundle'),
runTask('generateTypesDefinitions'),
2021-09-26 01:29:07 +08:00
runTask('buildHelper'),
series(
withTaskName('buildThemeChalk', () =>
run('pnpm run --filter ./packages/ build --parallel')
),
copyFullStyle
2021-09-26 01:29:07 +08:00
)
),
parallel(copyTypesDefinitions, copyFiles)
2021-09-26 01:29:07 +08:00
)
export * from './src'