@polterware/polterbase 0.2.6 → 0.2.7
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/README.md +3 -3
- package/dist/index.js +2 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,7 +125,7 @@ polterbase app configure uru --path .
|
|
|
125
125
|
```
|
|
126
126
|
|
|
127
127
|
```bash
|
|
128
|
-
polterbase app install uru
|
|
128
|
+
polterbase app install uru
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
`setup uru` installs dependencies, collects Supabase connection data, links the project, pushes migrations, and writes the runtime bootstrap payload used by the desktop app.
|
|
@@ -269,13 +269,13 @@ polterbase app configure uru
|
|
|
269
269
|
### Install the latest released Uru app
|
|
270
270
|
|
|
271
271
|
```bash
|
|
272
|
-
polterbase app install uru
|
|
272
|
+
polterbase app install uru
|
|
273
273
|
```
|
|
274
274
|
|
|
275
275
|
Install a specific release:
|
|
276
276
|
|
|
277
277
|
```bash
|
|
278
|
-
polterbase app install uru --
|
|
278
|
+
polterbase app install uru --version 1.0.0
|
|
279
279
|
```
|
|
280
280
|
|
|
281
281
|
### Check Supabase CLI version
|
package/dist/index.js
CHANGED
|
@@ -2049,12 +2049,6 @@ function parseCliArgs(argv) {
|
|
|
2049
2049
|
index = parsed.nextIndex;
|
|
2050
2050
|
continue;
|
|
2051
2051
|
}
|
|
2052
|
-
if (token.startsWith("--platform")) {
|
|
2053
|
-
const parsed = takeValue(argv, index);
|
|
2054
|
-
options.platform = parsed.value;
|
|
2055
|
-
index = parsed.nextIndex;
|
|
2056
|
-
continue;
|
|
2057
|
-
}
|
|
2058
2052
|
if (token.startsWith("--version")) {
|
|
2059
2053
|
const parsed = takeValue(argv, index);
|
|
2060
2054
|
options.version = parsed.value;
|
|
@@ -2090,11 +2084,11 @@ function printCliHelp() {
|
|
|
2090
2084
|
" polterbase app link uru [--path <dir>] [--relink]",
|
|
2091
2085
|
" polterbase app migrate uru [push|lint|reset|local-reset] [--path <dir>] [--relink]",
|
|
2092
2086
|
" polterbase app configure uru [--path <dir>] [--yes]",
|
|
2093
|
-
" polterbase app install uru
|
|
2087
|
+
" polterbase app install uru [--version <version>] [--artifact-url <url>] [--install-dir <dir>] [--yes]",
|
|
2094
2088
|
"",
|
|
2095
2089
|
"Notes:",
|
|
2096
2090
|
" - App workflows stay separate from the generic Supabase interactive menu.",
|
|
2097
|
-
" - `install uru` resolves the latest GitHub release from polterware/uru by default.",
|
|
2091
|
+
" - `install uru` is macOS-only and resolves the latest GitHub release from polterware/uru by default.",
|
|
2098
2092
|
" - Use --artifact-url or POLTERBASE_URU_MACOS_ARTIFACT_URL to override the downloaded asset.",
|
|
2099
2093
|
" - Use POLTERBASE_URU_GITHUB_REPO=owner/repo to resolve releases from a different repository.",
|
|
2100
2094
|
""
|
|
@@ -2847,9 +2841,6 @@ var uruProfile = {
|
|
|
2847
2841
|
case "configure":
|
|
2848
2842
|
return runConfigure(context);
|
|
2849
2843
|
case "install":
|
|
2850
|
-
if ((context.options.platform ?? "macos") !== "macos") {
|
|
2851
|
-
throw new Error("Only --platform macos is currently supported for Uru install.");
|
|
2852
|
-
}
|
|
2853
2844
|
return installMacosApp(context);
|
|
2854
2845
|
case "migrate":
|
|
2855
2846
|
return runMigration(
|