npm-pkgbuild 17.0.0 → 17.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-pkgbuild",
3
- "version": "17.0.0",
3
+ "version": "17.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
@@ -152,7 +152,7 @@ export class ARCH extends Packager {
152
152
  yield `
153
153
  package() {
154
154
  depends=(${self
155
- .makeDepends(properties.depends)
155
+ .makeDepends(properties.dependencies)
156
156
  .map(v => quote(v))
157
157
  .join(" ")})
158
158
 
@@ -273,7 +273,7 @@ const fields = {
273
273
  groups: default_array_attribute,
274
274
  arch: { ...default_array_attribute, default: ["any"], mandatory: true },
275
275
  backup: default_array_attribute,
276
- //depends: default_array_attribute,
276
+ depends: default_array_attribute,
277
277
  makedepends: default_attribute,
278
278
  checkdepends: default_attribute,
279
279
  optdepends: default_attribute,
@@ -94,6 +94,9 @@ export class ARCH extends Packager {
94
94
  backup: {
95
95
  type: string;
96
96
  };
97
+ depends: {
98
+ type: string;
99
+ };
97
100
  makedepends: {
98
101
  type: string;
99
102
  };