Add generated file to git

This commit is contained in:
Sidharth Vinod
2022-09-03 09:55:52 +05:30
parent 017fdfa552
commit c3da6c10fb

View File

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