Skip to content

Commit e52e238

Browse files
estruyfVesaJuvonen
authored andcommitted
Small change to the rig implementation (SharePoint#1267)
Small change to the rig implementation to have comments consistency and TypeScript name update.
1 parent 0829fb8 commit e52e238

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/spfx/toolchain/integrate-gulp-tasks-in-build-pipeline.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ You can also add this custom task to be executed before or after certain availab
8686
The SharePoint Framework tasks are available in the default build rig. The build rig is a collection of tasks defined for a specific purpose. In our case, building client-side packages. You can access this default rig using the `build.rig` object and get access to the pre and post task functions:
8787

8888
```js
89-
//execute before the typescript subtask
89+
// execute before the TypeScript subtask
9090
build.rig.addPreBuildTask(helloWorldTask);
9191

92-
// execute after TypeScript task
92+
// execute after TypeScript subtask
9393
build.rig.addPostTypescriptTask(helloWorldTask);
9494

95-
//execute after all tasks
95+
// execute after all tasks
9696
build.rig.addPostBuildTask(helloWorldTask);
9797
```
9898

0 commit comments

Comments
 (0)