Skip to content

Commit

Permalink
fix(node): fixes spelling issues in comments (projen#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgollucci authored Nov 1, 2020
1 parent 77a8557 commit 3a68deb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion API.md
Original file line number Diff line number Diff line change
Expand Up @@ -2125,7 +2125,7 @@ Name | Type | Description
**npmDistTag**🔹 | <code>string</code> | <span></span>
**npmRegistry**🔹 | <code>string</code> | <span></span>
**packageManager**🔹 | <code>[NodePackageManager](#projen-nodepackagemanager)</code> | The package manager to use.
**runScriptCommand**🔹 | <code>string</code> | The command to use to run scripts (e.g. `yarn run` or `npm run` depends on the package mabnager).
**runScriptCommand**🔹 | <code>string</code> | The command to use to run scripts (e.g. `yarn run` or `npm run` depends on the package manager).
**workflowAntitamperSteps**🔹 | <code>Array<any></code> | Returns the set of steps to perform anti-tamper check in a github workflow.
**workflowBootstrapSteps**🔹 | <code>Array<any></code> | Returns a set of steps to checkout and bootstrap the project in a github workflow.
**buildWorkflow**?🔹 | <code>[NodeBuildWorkflow](#projen-nodebuildworkflow)</code> | The PR build GitHub workflow.<br/>__*Optional*__
Expand Down
6 changes: 3 additions & 3 deletions src/node-project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ export class NodeProject extends Project {
protected readonly packageManager: NodePackageManager;

/**
* The command to use to run scripts (e.g. `yarn run` or `npm run` depends on the package mabnager).
* The command to use to run scripts (e.g. `yarn run` or `npm run` depends on the package manager).
*/
public readonly runScriptCommand: string;

Expand Down Expand Up @@ -1093,7 +1093,7 @@ export class NodeProject extends Project {
...this.bootstrapSteps,

// first anti-tamper check (right after bootstrapping)
// this will identify any non-committed files genrated by projen
// this will identify any non-committed files generated by projen
...this.workflowAntitamperSteps,
];
}
Expand Down Expand Up @@ -1442,7 +1442,7 @@ export class NodeBuildWorkflow extends GithubWorkflow {
{ run: `${project.runScriptCommand} build` },

// anti-tamper check (fails if there were changes to committed files)
// this will identify any non-commited files generated during build (e.g. test snapshots)
// this will identify any non-committed files generated during build (e.g. test snapshots)
...project.workflowAntitamperSteps,

// push bump commit
Expand Down

0 comments on commit 3a68deb

Please sign in to comment.