From 73f37b14d6b8622059e3ebf520a3eb830a7be841 Mon Sep 17 00:00:00 2001 From: Ruslan Lesiutin Date: Mon, 27 Mar 2023 15:11:26 +0100 Subject: [PATCH] fix: format template location following prettier rules (#36651) --- scripts/monorepo/align-package-versions.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/monorepo/align-package-versions.js b/scripts/monorepo/align-package-versions.js index 181104a72c8..74c13c3207d 100644 --- a/scripts/monorepo/align-package-versions.js +++ b/scripts/monorepo/align-package-versions.js @@ -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));