bdy 1.22.41-stage → 1.22.42-dev
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/distTs/package.json +1 -1
- package/distTs/src/input.js +8 -1
- package/package.json +1 -1
package/distTs/package.json
CHANGED
package/distTs/src/input.js
CHANGED
|
@@ -557,7 +557,14 @@ class Input {
|
|
|
557
557
|
}
|
|
558
558
|
}
|
|
559
559
|
else {
|
|
560
|
-
|
|
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,
|