bdy 1.22.41-dev → 1.22.42-beta

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bdy",
3
3
  "preferGlobal": false,
4
- "version": "1.22.41-dev",
4
+ "version": "1.22.42-beta",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -557,7 +557,14 @@ class Input {
557
557
  }
558
558
  }
559
559
  else {
560
- ref = str.trim();
560
+ const s = str.trim();
561
+ if (/^https?:\/\//.test(s)) {
562
+ type = sandbox_1.SANDBOX_FETCH.PUBLIC_REPO;
563
+ repository = s;
564
+ }
565
+ else {
566
+ ref = s;
567
+ }
561
568
  }
562
569
  const f = {
563
570
  type,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bdy",
3
3
  "preferGlobal": false,
4
- "version": "1.22.41-dev",
4
+ "version": "1.22.42-beta",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
7
7
  "scripts": {