Skip to content

Commit e5653df

Browse files
committed
fix linting errors
1 parent 25391fa commit e5653df

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"test:build-react-native-ios": "bundle install && node -e 'require(\"./scripts/react-native-helper\").buildIOS()'",
9393
"test:build-react-native-maze-runner": "docker-compose build --pull react-native-maze-runner",
9494
"test:node": "npm run test:build-node-container && docker compose run --use-aliases node-maze-runner",
95-
"test:publish": "node scripts/publish_local.js",
95+
"test:publish": "node scripts/publish-packages.js",
9696
"test:react-native:ios": "npm run test:build-react-native-ios && npm run test:build-react-native-maze-runner && APP_LOCATION=build/$REACT_NATIVE_VERSION.ipa docker-compose run --use-aliases react-native-maze-runner",
9797
"local-npm:start": "verdaccio --config test/electron/local-npm-config.yml --listen 0.0.0.0:5539",
9898
"local-npm:publish-all": "lerna publish \"$VERSION_IDENTIFIER\" --yes --force-publish --exact --no-push --no-git-reset --no-git-tag-version --registry 'http://0.0.0.0:5539'",

scripts/generate-react-native-fixture.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ function getLocalPackages () {
119119
if (tarballFiles.length === 0) {
120120
console.warn(`No tarball found for ${tarballName} in ${packagesDir}. Please ensure the package is built and available.`)
121121
continue
122-
}
123-
122+
}
123+
124124
const tarballFile = tarballFiles[0]
125-
const tarballPath = resolve(packagesDir, tarballFile);
126-
fs.copyFileSync(tarballPath, resolve(fixtureDir, tarballFile));
127-
console.log(`Copied ${tarballFile} to ${fixtureDir}`);
125+
const tarballPath = resolve(packagesDir, tarballFile)
126+
fs.copyFileSync(tarballPath, resolve(fixtureDir, tarballFile))
127+
console.log(`Copied ${tarballFile} to ${fixtureDir}`)
128128
}
129129
}
130130

0 commit comments

Comments
 (0)