zarro 1.197.1 → 1.199.0
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/package.json +5 -1
- package/types.d.ts +5 -1
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zarro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.199.0",
|
|
4
4
|
"description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
|
|
5
5
|
"bin": {
|
|
6
6
|
"zarro": "index.js"
|
|
7
7
|
},
|
|
8
8
|
"homepage": "https://github.com/fluffynuts/zarro",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/fluffynuts/zarro"
|
|
12
|
+
},
|
|
9
13
|
"main": "index.js",
|
|
10
14
|
"scripts": {
|
|
11
15
|
"commit": "node commit-all.js",
|
package/types.d.ts
CHANGED
|
@@ -359,7 +359,11 @@ declare global {
|
|
|
359
359
|
devDependencies?: Dictionary<string>;
|
|
360
360
|
files?: string[];
|
|
361
361
|
author: Author; // I'm sure there's a multi-author construct too
|
|
362
|
-
license: LicenseIdentifier
|
|
362
|
+
license: LicenseIdentifier,
|
|
363
|
+
repository?: {
|
|
364
|
+
type: string;
|
|
365
|
+
url: string;
|
|
366
|
+
}
|
|
363
367
|
}
|
|
364
368
|
|
|
365
369
|
type ResolveMasks = (
|