Skip to content

Commit b09fca0

Browse files
committed
fixup! build: switch to ivy partial compilation package format
ds
1 parent 4df7d8b commit b09fca0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

integration/npm-packages-from-runfiles.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function getNpmPackagesFromRunfiles() {
2222
const packageRunfilesDir = path.join(process.env.RUNFILES, workspacePath);
2323
return fs.readdirSync(packageRunfilesDir)
2424
.map(name => ({name, pkgPath: path.join(packageRunfilesDir, name, 'npm_package/')}))
25-
.filter(({pkgPath}) => path.existsSync(pkgPath));
25+
.filter(({pkgPath}) => fs.existsSync(pkgPath));
2626
}
2727
const workspaceManifestPathRegex = new RegExp(`^${workspacePath}/[\\w-]+/npm_package$`);
2828
return fs.readFileSync(runfilesManifestPath, 'utf8')

tools/spec-bundling/esbuild.config-tmpl.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,5 @@ export default {
2525
// Use the `iife` format for the test entry-point as tests should run immediately.
2626
// For browser tests which are wrapped in an AMD header and footer, this works as well.
2727
format: 'iife',
28-
logLevel: 'verbose',
2928
plugins,
3029
};

0 commit comments

Comments
 (0)