mirror of
https://github.com/ant-design/ant-design.git
synced 2026-02-08 18:39:20 +08:00
* feat: zeroRuntime * feat: generate full style * feat: add antd.css into global css * chore: revert site change * docs: add docs * chore: update scripts * chore: add test
18 lines
447 B
TypeScript
18 lines
447 B
TypeScript
import $ from 'dekko';
|
|
import chalk from 'chalk';
|
|
|
|
$('dist')
|
|
.isDirectory()
|
|
.hasFile('antd-with-locales.js')
|
|
.hasFile('antd-with-locales.js.map')
|
|
.hasFile('antd-with-locales.min.js')
|
|
.hasFile('antd-with-locales.min.js.map')
|
|
.hasFile('antd.js')
|
|
.hasFile('antd.js.map')
|
|
.hasFile('antd.min.js')
|
|
.hasFile('antd.min.js.map')
|
|
.hasFile('antd.css')
|
|
.hasFile('reset.css');
|
|
|
|
console.log(chalk.green('✨ `dist` directory is valid.'));
|