You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/core/README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,14 +155,14 @@ Project is a class that represents the project and provides methods to work with
155
155
- publish the project
156
156
- etc.
157
157
158
-
Most of the methods are implemented in base class [GenericProject](./src/project/project.ts) and you can extend it to create your own project class.
158
+
Most of the methods are implemented in base class [Project](./src/project/project.ts) and you can extend it to create your own project class.
159
159
160
160
In most casses you need just prepare options for the base class and implement `publish` method (like it is done in [PackageJsonProject](./src/project/packageJson.ts)).
@@ -176,7 +176,7 @@ export class CustomProject extends GenericProject {
176
176
}
177
177
```
178
178
179
-
There also is a base class for monorepo projects - [GenericMonorepoProject](./src/project/monorepo.ts). It provides methods to work with monorepo projects and you can extend it to create your own monorepo project class (alos see [PackageJsonMonorepoProject](./src/project/packageJsonMonorepo.ts)).
179
+
There also is a base class for monorepo projects - [MonorepoProject](./src/project/monorepo.ts). It provides methods to work with monorepo projects and you can extend it to create your own monorepo project class (alos see [PackageJsonMonorepoProject](./src/project/packageJsonMonorepo.ts)).
180
180
181
181
### Release creator
182
182
@@ -185,9 +185,9 @@ Release creator is a class that creates a release in the remote repository (like
185
185
Signature of the class is very simple, you just need to implement `create` method:
0 commit comments