Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Sep 9, 2024
1 parent c3872c7 commit 44c8e5e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion e2e-examples/cli-e2e-original/tooling/original.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function verdaccioTargets(): Record<string, TargetConfiguration> {
options: {
config: '.verdaccio/config.yml',
storage: `tmp/local-registry/storage`,
port: 4200,
port: 4210,
},
},
};
Expand Down
4 changes: 2 additions & 2 deletions projects/cli/src/lib/cli.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import yargs, { Options } from 'yargs';
import yargs, {Argv, Options} from 'yargs';
import { sortUserFile } from '@org/core';

export type CliArgs = {
filePath: string;
};

const NOOP_BUILDER = undefined;
const NOOP_BUILDER = <T>(_: Argv<T>) => {};
export function cli(args: string[]) {
return yargs(args)
.version(false)
Expand Down
3 changes: 2 additions & 1 deletion tooling/build-env/src/shared/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export function getEnvironmentsRoot(
}

/**
* bx default takes the project name of the current task target
* Nx by default takes the project name of the current task target (env.NX_TASK_TARGET_PROJECT)
*
* @param projectName
* @param environmentsDir
*/
Expand Down

0 comments on commit 44c8e5e

Please sign in to comment.