vona-cli-set-api 1.0.91 → 1.0.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -123,9 +123,12 @@ export class CliToolsMetadata extends BeanCliBase {
|
|
|
123
123
|
if (!content.trim()) {
|
|
124
124
|
content = 'export {};';
|
|
125
125
|
}
|
|
126
|
+
else {
|
|
127
|
+
content = `/* eslint-disable */\n${content}`;
|
|
128
|
+
}
|
|
126
129
|
// save
|
|
127
130
|
await fse.writeFile(metaIndexFile, content);
|
|
128
|
-
await this.helper.formatFile({ fileName: metaIndexFile, logPrefix: 'format: ' });
|
|
131
|
+
// await this.helper.formatFile({ fileName: metaIndexFile, logPrefix: 'format: ' });
|
|
129
132
|
// generate this
|
|
130
133
|
await this._generateThis(moduleName, relativeNameCapitalize, modulePath);
|
|
131
134
|
// index
|