mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +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
29 lines
566 B
JavaScript
29 lines
566 B
JavaScript
const $ = require('dekko');
|
|
|
|
$('lib')
|
|
.isDirectory()
|
|
.hasFile('index.js')
|
|
.hasFile('index.d.ts');
|
|
|
|
$('lib/*')
|
|
.filter((filename) => {
|
|
return !filename.endsWith('index.js') &&
|
|
!filename.endsWith('index.d.ts');
|
|
})
|
|
.isDirectory()
|
|
.filter((filename) => {
|
|
return !filename.endsWith('style') &&
|
|
!filename.endsWith('_util');
|
|
})
|
|
.hasFile('index.js')
|
|
.hasFile('index.d.ts')
|
|
.hasDirectory('style');
|
|
|
|
$('lib/*/style')
|
|
.hasFile('css.js')
|
|
.hasFile('index.js');
|
|
|
|
// eslint-disable-next-line
|
|
console.log('`lib` directory is valid.');
|
|
|