pkgbld 1.31.0 → 1.31.2
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 +2 -2
- package/package.json +2 -2
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
|
@@ -936,7 +936,7 @@ async function writeJson(path, json) {
|
|
|
936
936
|
await fs.writeFile(path, toFormattedJson(json));
|
|
937
937
|
}
|
|
938
938
|
|
|
939
|
-
var version = "1.31.
|
|
939
|
+
var version = "1.31.2";
|
|
940
940
|
var name = "pkgbld";
|
|
941
941
|
var license = "MIT";
|
|
942
942
|
var author = "Konstantin Shutkin";
|
|
@@ -977,7 +977,7 @@ var dependencies = {
|
|
|
977
977
|
rollup: "^4.12.0",
|
|
978
978
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
979
979
|
"rollup-plugin-preprocess": "^0.0.4",
|
|
980
|
-
"@rollup/plugin-commonjs": "^
|
|
980
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
981
981
|
"@rollup/plugin-terser": "^0.4.4",
|
|
982
982
|
"@rollup/plugin-json": "^6.1.0",
|
|
983
983
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.31.
|
|
2
|
+
"version": "1.31.2",
|
|
3
3
|
"name": "pkgbld",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Konstantin Shutkin",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"rollup": "^4.12.0",
|
|
35
35
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
36
36
|
"rollup-plugin-preprocess": "^0.0.4",
|
|
37
|
-
"@rollup/plugin-commonjs": "^
|
|
37
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
38
38
|
"@rollup/plugin-terser": "^0.4.4",
|
|
39
39
|
"@rollup/plugin-json": "^6.1.0",
|
|
40
40
|
"@rollup/plugin-node-resolve": "^15.2.3",
|