Skip to content

Commit

Permalink
do not use strict keywords in release pipeline
Browse files Browse the repository at this point in the history
Signed-off-by: Kim Brose <[email protected]>
  • Loading branch information
HarHarLinks committed Oct 21, 2024
1 parent 60df445 commit f464f96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/publishAllPackages.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import * as path from 'path';

const packages = fs.readdirSync('packages');

for (var package of packages) {
const packagePath = path.resolve('packages', package);
for (var pkg of packages) {
const packagePath = path.resolve('packages', pkg);

if (!fs.lstatSync(packagePath).isDirectory()) {
continue;
Expand Down

0 comments on commit f464f96

Please sign in to comment.