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 18 19 20 21 22 23 24 25 26 27 28
let files = [];
const jsFiles = glob.sync('ant-design-pro/**/*.js*', {
  ignore: ['**/node_modules/**', 'build/**'],
});
const tsFiles = glob.sync('ant-design-pro/**/*.ts*', {
  ignore: ['**/node_modules/**', 'build/**'],
});
files = files.concat(jsFiles);
files = files.concat(tsFiles);
if (!files.length) {
  return;
}
陈帅's avatar
陈帅 committed
29

陈帅's avatar
陈帅 committed
30
files.forEach(file => {
陈帅's avatar
陈帅 committed
31 32 33
  const options = prettier.resolveConfig.sync(file, {
    config: prettierConfigPath,
  });
陈帅's avatar
陈帅 committed
34
  const fileInfo = prettier.getFileInfo.sync(file);
陈帅's avatar
陈帅 committed
35 36 37
  if (fileInfo.ignored) {
    return;
  }
陈帅's avatar
陈帅 committed
38 39 40 41 42 43 44 45 46
  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');
47
      console.log(`\x1b[34m ${file} is prettier`);
陈帅's avatar
陈帅 committed
48 49 50 51 52
    }
  } catch (e) {
    didError = true;
  }
});
陈帅's avatar
陈帅 committed
53

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