| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- const config = require('../src/config.json');
- const path = require('path');
- const fs = require('fs-extra');
- let importStr = `import { App } from 'vue';
- declare class UIComponent {
- static install(vue: App): void;
- }\n`;
- const packages = [];
- config.nav.map((item) => {
- item.packages.forEach((element) => {
- let { name, show, exportEmpty, type } = element;
- if (show || exportEmpty) {
- importStr +=
- type == 'methods' ? `declare const ${name}: any;\n` : `declare class ${name} extends UIComponent {}\n`;
- packages.push(name);
- }
- });
- });
- let installFunction = `
- export interface InstallationOptions {
- locale?: any;
- lang?: any;
- }
- declare function install(app: App, options?: InstallationOptions): void;
- export { ${packages.join(',')},install };
- declare const _default: {
- install: typeof install;
- version: string;
- };
- export default _default;`;
- let fileStr = importStr + installFunction;
- fs.outputFile(path.resolve(__dirname, '../dist/nutui.d.ts'), fileStr, 'utf8', (error) => {
- // logger.success(`${package_config_path} 文件写入成功`);
- });
- fs.outputFile(
- path.resolve(__dirname, '../dist/index.d.ts'),
- `import * as NutUI from './nutui';
- export default NutUI;
- export * from './nutui';`,
- 'utf8',
- (error) => {
- // logger.success(`${package_config_path} 文件写入成功`);
- }
- );
|