mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
10 lines
162 B
JavaScript
Executable File
10 lines
162 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/* eslint strict:0, camelcase:0 */
|
|
|
|
'use strict';
|
|
|
|
require('antd-tools/lib/updateComponents')((name) => {
|
|
return !!name.match(/^rc-/);
|
|
});
|