zarro 1.136.5 → 1.136.7

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.
@@ -88,7 +88,7 @@ function buildForNetCore(solutions) {
88
88
  const options = {
89
89
  target: "[not set]",
90
90
  verbosity: env.resolve("BUILD_VERBOSITY"),
91
- configurations: configuration,
91
+ configuration: configuration,
92
92
  additionalArguments: msbuildArgs
93
93
  };
94
94
  return promisifyStream(
@@ -46,7 +46,7 @@
46
46
  return result;
47
47
  }
48
48
  const sha = currentShortSHA();
49
- return `${result}-${timestamp()}.${sha}`;
49
+ return `${result}-${timestamp()}+${sha}`;
50
50
  };
51
51
  function timestamp() {
52
52
  const now = new Date(Date.now()), year = `${now.getFullYear()}`.substring(2), month = zeroPad(now.getMonth() + 1), day = zeroPad(now.getDate()), hour = zeroPad(now.getHours()), minute = zeroPad(now.getMinutes());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.136.5",
3
+ "version": "1.136.7",
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"