prettier.js 1.4 KB
Newer Older
陈帅's avatar
陈帅 committed
1 2 3 4 5 6 7 8
/**
 * copy to https://github.com/facebook/react/blob/master/scripts/prettier/index.js
 * prettier api doc https://prettier.io/docs/en/api.html
 *----------*****--------------
 *  prettier all js and all ts.
 *----------*****--------------
 */

9
const glob = require('glob');
陈帅's avatar
陈帅 committed
10 11
const prettier = require('prettier');
const fs = require('fs');
12

陈帅's avatar
陈帅 committed
13 14 15 16
const prettierConfigPath = require.resolve('../.prettierrc');

let didError = false;

17
let files = [];
xiaohuoni's avatar
xiaohuoni committed
18 19
const jsFiles = glob.sync('**/src/*.js*', {
  ignore: ['**/node_modules/**', 'build/**', '**/.umi/**'],
20
});
xiaohuoni's avatar
xiaohuoni committed
21 22
const tsFiles = glob.sync('**/src/*.ts*', {
  ignore: ['**/node_modules/**', 'build/**', '**/.umi/**'],
23 24 25
});
files = files.concat(jsFiles);
files = files.concat(tsFiles);
xiaohuoni's avatar
xiaohuoni committed
26

27 28 29
if (!files.length) {
  return;
}
陈帅's avatar
陈帅 committed
30

陈帅's avatar
陈帅 committed
31
files.forEach(file => {
陈帅's avatar
陈帅 committed
32 33 34
  const options = prettier.resolveConfig.sync(file, {
    config: prettierConfigPath,
  });
陈帅's avatar
陈帅 committed
35
  const fileInfo = prettier.getFileInfo.sync(file);
陈帅's avatar
陈帅 committed
36 37 38
  if (fileInfo.ignored) {
    return;
  }
陈帅's avatar
陈帅 committed
39 40 41 42 43 44 45 46 47
  try {
    const input = fs.readFileSync(file, 'utf8');
    const withParserOptions = {
      ...options,
      parser: fileInfo.inferredParser,
    };
    const output = prettier.format(input, withParserOptions);
    if (output !== input) {
      fs.writeFileSync(file, output, 'utf8');
48
      console.log(`\x1b[34m ${file} is prettier`);
陈帅's avatar
陈帅 committed
49 50 51 52 53
    }
  } catch (e) {
    didError = true;
  }
});
陈帅's avatar
陈帅 committed
54

陈帅's avatar
陈帅 committed
55 56 57
if (didError) {
  process.exit(1);
}
58
console.log('\x1b[32m prettier success!');