@@ -8,12 +8,12 @@ import Repo from './repo.js';
88 * Describes the package that is used to initialize a polyrepo, or one of the
99 * packages that is used to initialize a monorepo.
1010 *
11- * name - The desired name of the package.
11+ * Properties:
1212 *
13- * version - The desired version of the package.
14- *
15- * directory - The path relative to the repo's root directory that
16- * holds this package.
13+ * - `name` - The desired name of the package.
14+ * - `version` - The desired version of the package.
15+ * - ` directory` - The path relative to the repo's root directory that holds
16+ * this package.
1717 */
1818export type PackageSpecification = {
1919 name : string ;
@@ -24,13 +24,13 @@ export type PackageSpecification = {
2424/**
2525 * A set of configuration options for an {@link Environment}.
2626 *
27- * directoryPath - The directory out of which this environment will
28- * operate.
27+ * Properties:
2928 *
30- * createInitialCommit - Usually when a repo is initialized, a commit
31- * is created (which will contain starting `package.json` files). You can use
32- * this option to disable that if you need to create your own commits for
33- * clarity.
29+ * - `directoryPath` - The directory out of which this environment will operate.
30+ * - `createInitialCommit` - Usually when a repo is initialized, a commit is
31+ * created (which will contain starting `package.json` files). You can use
32+ * this option to disable that if you need to create your own commits for
33+ * clarity.
3434 */
3535export type EnvironmentOptions = {
3636 directoryPath : string ;
0 commit comments