mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
0062867274
* new Layout Component (#4087) * change Anchor type * new Layout * Component update && add snap * Revert "new Layout Component" (#4131) * add Layout (#4169) * add Layout * update * fix snapshot * Improve layout component 1. update demo code 2. drop `position` of Sider 3. improve demo style
13 lines
228 B
JavaScript
13 lines
228 B
JavaScript
const $ = require('dekko');
|
|
|
|
$('dist')
|
|
.isDirectory()
|
|
.hasFile('antd.css')
|
|
.hasFile('antd.min.css')
|
|
.hasFile('antd.js')
|
|
.hasFile('antd.min.js');
|
|
|
|
// eslint-disable-next-line
|
|
console.log('`dist` directory is valid.');
|
|
|