You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// `--drizzle` has a v3 answer now (`stash eql migration --drizzle`, #691),
745
+
// so point there rather than at `--eql-version 2` — steering users to v2
746
+
// is how new projects ended up on the legacy generation.
747
+
constv3Alternative=
748
+
v2OnlyFlag==='--drizzle'
749
+
? ' For a v3 install as a Drizzle migration, use `stash eql migration --drizzle`.'
750
+
: ''
744
751
returnoptions.eqlVersion==='3'
745
-
? `\`--eql-version 3\` does not support \`${v2OnlyFlag}\` yet — v3 currently installs via the direct path only.`
746
-
: `\`${v2OnlyFlag}\` requires EQL v2. Re-run with \`--eql-version 2 ${v2OnlyFlag}\` (v3 is the default and installs via the direct path only).`
752
+
? `\`--eql-version 3\` does not support \`${v2OnlyFlag}\` yet — v3 currently installs via the direct path only.${v3Alternative}`
753
+
: `\`${v2OnlyFlag}\` requires EQL v2. Re-run with \`--eql-version 2 ${v2OnlyFlag}\` (v3 is the default and installs via the direct path only).${v3Alternative}`
0 commit comments