fix: format template location following prettier rules (#36651)

This commit is contained in:
Ruslan Lesiutin
2023-03-27 15:11:26 +01:00
committed by GitHub
parent aff2e93576
commit 73f37b14d6
+6 -1
View File
@@ -15,7 +15,12 @@ const checkForGitChanges = require('./check-for-git-changes');
const forEachPackage = require('./for-each-package');
const ROOT_LOCATION = path.join(__dirname, '..', '..');
const TEMPLATE_LOCATION = path.join(ROOT_LOCATION, 'packages/react-native/template');
const TEMPLATE_LOCATION = path.join(
ROOT_LOCATION,
'packages',
'react-native',
'template',
);
const readJSONFile = pathToFile => JSON.parse(readFileSync(pathToFile));