File tree 1 file changed +12
-5
lines changed
1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,6 @@ import chalk from "chalk";
3
3
import { promises as fs } from "fs" ;
4
4
import prettier from "prettier" ;
5
5
6
- import existingContributors from "../.all-contributorsrc.json" assert { type : "json " } ;
7
- import existingPackage from "../package.json" assert { type : "json " } ;
8
- import outcomeLabels from "./labels.json" assert { type : "json " } ;
9
-
10
6
let caughtError ;
11
7
12
8
try {
87
83
console . log ( ) ;
88
84
console . log ( chalk . gray `Hydrating package metadata locally...` ) ;
89
85
86
+ async function readFileAsJSON ( filePath ) {
87
+ return JSON . parse ( ( await fs . readFile ( filePath ) ) . toString ( ) ) ;
88
+ }
89
+
90
+ const [ existingContributors , existingPackage , outcomeLabels ] =
91
+ await Promise . all ( [
92
+ readFileAsJSON ( "./.all-contributorsrc" ) ,
93
+ readFileAsJSON ( "./package.json" ) ,
94
+ readFileAsJSON ( "./script/labels.json" ) ,
95
+ ] ) ;
96
+
90
97
await fs . writeFile (
91
- "./.all-contributorsrc.json " ,
98
+ "./.all-contributorsrc" ,
92
99
prettier . format (
93
100
JSON . stringify ( {
94
101
...existingContributors ,
You can’t perform that action at this time.
0 commit comments