mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-08 15:41:08 +08:00
* refactor: Use @ant-design/fast-color instead
* fix: test failed
* chore: remove isValidColor
All FastColor objects are valid. So isValid is always true.
FastColor("not-a-color") -> `#000000`
* refactor: rename directory `colorful` to `color`
* fix: ci fail
14 lines
252 B
TypeScript
14 lines
252 B
TypeScript
import { defineBuildConfig } from 'unbuild';
|
|
|
|
export default defineBuildConfig({
|
|
clean: true,
|
|
declaration: true,
|
|
entries: [
|
|
'src/index',
|
|
'src/constants/index',
|
|
'src/utils/index',
|
|
'src/color/index',
|
|
'src/cache/index',
|
|
],
|
|
});
|