Add generated file to git

This commit is contained in:
Sidharth Vinod 2022-09-03 09:55:52 +05:30
parent 017fdfa552
commit c3da6c10fb
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
1 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import { remark } from 'remark';
import type { Code, Root } from 'mdast';
import { readFileSync, writeFileSync, mkdirSync, copyFileSync, existsSync } from 'fs';
import { readFileSync, writeFileSync, mkdirSync, existsSync } from 'fs';
// @ts-ignore
import flatmap from 'unist-util-flatmap';
import { globby } from 'globby';
@ -61,8 +61,7 @@ const transform = (file: string) => {
verifyAndCopy(file);
});
if (fileChanged) {
console.log('Please commit the changes to the docs folder');
console.log('Committing changes to the docs folder');
exec('git add docs');
// process.exit(0);
}
})();