@rebasepro/cli 0.10.1-canary.b1e3dbf → 0.10.1-canary.d8d45b2
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/dist/index.es.js +4 -3
- package/dist/index.es.js.map +1 -1
- package/package.json +7 -7
package/dist/index.es.js
CHANGED
|
@@ -4771,7 +4771,7 @@ async function linkCommand(rawArgs) {
|
|
|
4771
4771
|
})).data;
|
|
4772
4772
|
if (projects.length === 0) fail("No projects found for your account.", `Create one with ${chalk.bold("rebase cloud projects create")}.`);
|
|
4773
4773
|
const { picked } = await inquirer.prompt([{
|
|
4774
|
-
type: "
|
|
4774
|
+
type: "select",
|
|
4775
4775
|
name: "picked",
|
|
4776
4776
|
message: "Select a project to link:",
|
|
4777
4777
|
choices: projects.map((p) => ({
|
|
@@ -4815,7 +4815,7 @@ async function selectOrgCommand(rawArgs) {
|
|
|
4815
4815
|
let chosen = target ? orgs.find((o) => String(o.id) === target || o.slug === target) : void 0;
|
|
4816
4816
|
if (!chosen && !target) {
|
|
4817
4817
|
const { picked } = await inquirer.prompt([{
|
|
4818
|
-
type: "
|
|
4818
|
+
type: "select",
|
|
4819
4819
|
name: "picked",
|
|
4820
4820
|
message: "Select the active organization:",
|
|
4821
4821
|
choices: orgs.map((o) => ({
|
|
@@ -5092,6 +5092,7 @@ function packBundle(bundleDir, outPath) {
|
|
|
5092
5092
|
const child = spawn("tar", [
|
|
5093
5093
|
"-czf",
|
|
5094
5094
|
outPath,
|
|
5095
|
+
"--no-xattrs",
|
|
5095
5096
|
"--exclude",
|
|
5096
5097
|
"node_modules",
|
|
5097
5098
|
"-C",
|
|
@@ -5727,7 +5728,7 @@ async function createDatabase(rawArgs) {
|
|
|
5727
5728
|
let type = args["--type"];
|
|
5728
5729
|
if (!type) {
|
|
5729
5730
|
const { picked } = await inquirer.prompt([{
|
|
5730
|
-
type: "
|
|
5731
|
+
type: "select",
|
|
5731
5732
|
name: "picked",
|
|
5732
5733
|
message: "Database type:",
|
|
5733
5734
|
choices: [{
|