pkgbld 1.31.0 → 1.31.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -246,9 +246,9 @@ You might want to disable this option in some edge cases.
|
|
|
246
246
|
|
|
247
247
|
`pkgbld` reads all installed packages named `pkgbld-plugin-*` and assumes they are plugins
|
|
248
248
|
|
|
249
|
-
Plugins suppose to implement one or more of the following interface methods
|
|
249
|
+
Plugins suppose to implement one or more of the following interface methods on an object that returned by `create()` function exported by the plugin module.
|
|
250
250
|
|
|
251
|
-
```
|
|
251
|
+
```typescript
|
|
252
252
|
interface PkgbldPlugin {
|
|
253
253
|
options(parsedArgs: {[key: string]: string | number}, options: ReturnType<typeof getCliOptions>): void;
|
|
254
254
|
processPackageJson(packageJson: PackageJson, inputs: string[], logger: Logger): void;
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED