@biffo/cli 0.59.0 → 0.59.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/core.version CHANGED
@@ -1 +1 @@
1
- 0.59.0
1
+ 0.59.1
package/dist/index.js CHANGED
@@ -228,6 +228,10 @@ function writeInstanceCoreVersion(cwd, version) {
228
228
  writeFileSync(join2(cwd, INSTANCE_CORE_FILE), serializeInstanceCoreVersion(version));
229
229
  }
230
230
  function latestCoreVersionFromTags(repo, git = defaultTagRunner) {
231
+ try {
232
+ git(["-C", repo, "fetch", "--tags", "--quiet"]);
233
+ } catch {
234
+ }
231
235
  let out;
232
236
  try {
233
237
  out = git(["-C", repo, "tag", "--list", "core-v*"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.59.0",
3
+ "version": "0.59.1",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",