Skip to content

Commit

Permalink
Block comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Sep 8, 2023
1 parent 1f584e5 commit e358402
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packageManifest.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
const fs = require('fs');
const path = require('path');

/**
* Build a package manifest for the @deephaven packages.
* @returns {{
* packageNames: string[], // The package names.
* packageManifest: Map<string, string> // Map of package names to directory names.
* }}
*/
function buildPackageManifest() {
const packageDirNames = fs
.readdirSync(path.join(__dirname, 'packages'), { withFileTypes: true })
Expand Down

0 comments on commit e358402

Please sign in to comment.