zarro 1.124.3 → 1.124.4

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.
@@ -5,7 +5,7 @@
5
5
  if (typeof packageMatch === "string") {
6
6
  packageMatch = new RegExp(`^${packageMatch}$`);
7
7
  }
8
- return editXml(async (xml) => {
8
+ return editXml((xml) => {
9
9
  const meta = xml.package.metadata[0], packageId = meta.id[0], dependencies = meta.dependencies[0].group;
10
10
  for (const dep of dependencies) {
11
11
  const dependency = (dep.dependency || [])[0];
@@ -71,12 +71,12 @@
71
71
  return xml;
72
72
  }
73
73
  function incrementPackageVersion() {
74
- return editXml(async (xml, file) => {
74
+ return editXml((xml, file) => {
75
75
  if (xml.package) {
76
- return await incrementPackageVersionInNuspec(xml, file);
76
+ return incrementPackageVersionInNuspec(xml, file);
77
77
  }
78
78
  else if (xml.Project) {
79
- return await incrementPackageVersionInCsProj(xml, file);
79
+ return incrementPackageVersionInCsProj(xml, file);
80
80
  }
81
81
  throw new ZarroError(`Don't know how to increment package version in document:\n\n${JSON.stringify(xml)}`);
82
82
  }, xmlOpts);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.124.3",
3
+ "version": "1.124.4",
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"