Skip to content

Commit

Permalink
prep build 09/19
Browse files Browse the repository at this point in the history
  • Loading branch information
bph committed Sep 19, 2023
2 parents 5723c72 + 2cfe1ba commit 0a251db
Show file tree
Hide file tree
Showing 176 changed files with 2,539 additions and 1,243 deletions.
4 changes: 2 additions & 2 deletions bin/packages/check-build-type-declaration-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function checkUnverifiedDeclarationFiles() {
const packageDir = path.resolve( 'packages' );
const packageDirs = (
await fs.readdir( packageDir, { withFileTypes: true } )
)
)
.filter( ( dirent ) => dirent.isDirectory() )
.map( ( dirent ) => path.join( packageDir, dirent.name ) );

Expand All @@ -97,7 +97,7 @@ async function checkUnverifiedDeclarationFiles() {
: null
)
)
).filter( Boolean );
).filter( Boolean );

const tscResults = await Promise.allSettled(
declarations.map( typecheckDeclarations )
Expand Down
7 changes: 3 additions & 4 deletions bin/plugin/commands/packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,9 @@ async function updatePackages( config ) {
);
const changelogFilesPublicPackages = changelogFiles.filter(
( changelogPath ) => {
const pkg = require( path.join(
path.dirname( changelogPath ),
'package.json'
) );
const pkg = require(
path.join( path.dirname( changelogPath ), 'package.json' )
);
return pkg.private !== true;
}
);
Expand Down
Loading

0 comments on commit 0a251db

Please sign in to comment.