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));