prettier.js 1.71 KB
Newer Older
陈帅's avatar
陈帅 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/**
 * 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.
 *----------*****--------------
 */

const glob = require('glob');
const prettier = require('prettier');
const fs = require('fs');
const prettierConfigPath = require.resolve('../.prettierrc');

let didError = false;

let files = [];
const jsFiles = glob.sync('src/**/*.js*', { ignore: ['**/node_modules/**', 'build/**'] });
const tsFiles = glob.sync('src/**/*.ts*', { ignore: ['**/node_modules/**', 'build/**'] });
19
const configFiles = glob.sync('config/**/*.js*', { ignore: ['**/node_modules/**', 'build/**'] });
moZLeo's avatar
moZLeo committed
20
const scriptFiles = glob.sync('scripts/**/*.js');
21
const lessFiles = glob.sync('src/**/*.less*', { ignore: ['**/node_modules/**', 'build/**'] });
陈帅's avatar
陈帅 committed
22 23
files = files.concat(jsFiles);
files = files.concat(tsFiles);
24
files = files.concat(configFiles);
moZLeo's avatar
moZLeo committed
25
files = files.concat(scriptFiles);
26
files = files.concat(lessFiles);
陈帅's avatar
陈帅 committed
27 28 29 30
if (!files.length) {
  return;
}

陈帅'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 48 49 50 51 52 53
  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');
      console.log(`\x1b[34m ${file} is prettier`);
    }
  } catch (e) {
    didError = true;
  }
});
陈帅's avatar
陈帅 committed
54

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