@capgo/cli 4.0.1 → 4.0.3

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.
@@ -39,3 +39,4 @@ jobs:
39
39
  with:
40
40
  token: ${{ secrets.NPM_TOKEN }}
41
41
  tag: next
42
+ provenance: true
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.0.3](https://github.com/Cap-go/capgo-cli/compare/v4.0.2...v4.0.3) (2024-02-18)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add provenance ([a70f6bb](https://github.com/Cap-go/capgo-cli/commit/a70f6bbc3e4b2e88f7c87e704c062d4832f4f674))
11
+
12
+ ### [4.0.2](https://github.com/Cap-go/capgo-cli/compare/v4.0.1...v4.0.2) (2024-02-17)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * add log when using custom supabase ([8a22378](https://github.com/Cap-go/capgo-cli/commit/8a223783cb95ec9a80555fb21f963fd9c38c311d))
18
+
5
19
  ### [4.0.1](https://github.com/Cap-go/capgo-cli/compare/v4.0.0...v4.0.1) (2024-02-10)
6
20
 
7
21
 
package/dist/index.js CHANGED
@@ -61661,7 +61661,7 @@ var import_get_latest_version = __toESM(require_src3());
61661
61661
  // package.json
61662
61662
  var package_default = {
61663
61663
  name: "@capgo/cli",
61664
- version: "4.0.1",
61664
+ version: "4.0.3",
61665
61665
  description: "A CLI to upload to capgo servers",
61666
61666
  main: "dist/index.js",
61667
61667
  bin: {
@@ -62326,6 +62326,7 @@ var getLocalConfig = async () => {
62326
62326
  hostWeb: config?.app?.extConfig?.plugins?.CapacitorUpdater?.localWebHost || defaultHostWeb
62327
62327
  };
62328
62328
  if (config?.app?.extConfig?.plugins?.CapacitorUpdater?.localSupa && config?.app?.extConfig?.plugins?.CapacitorUpdater?.localSupaAnon) {
62329
+ f2.info("Using custom supabase instance from capacitor.config.json");
62329
62330
  capConfig.supaKey = config?.app?.extConfig?.plugins?.CapacitorUpdater?.localSupaAnon;
62330
62331
  capConfig.supaHost = config?.app?.extConfig?.plugins?.CapacitorUpdater?.localSupa;
62331
62332
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "4.0.1",
3
+ "version": "4.0.3",
4
4
  "description": "A CLI to upload to capgo servers",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/utils.ts CHANGED
@@ -43,6 +43,7 @@ export const getLocalConfig = async () => {
43
43
  }
44
44
  // eslint-disable-next-line max-len
45
45
  if (config?.app?.extConfig?.plugins?.CapacitorUpdater?.localSupa && config?.app?.extConfig?.plugins?.CapacitorUpdater?.localSupaAnon) {
46
+ p.log.info('Using custom supabase instance from capacitor.config.json')
46
47
  capConfig.supaKey = config?.app?.extConfig?.plugins?.CapacitorUpdater?.localSupaAnon
47
48
  capConfig.supaHost = config?.app?.extConfig?.plugins?.CapacitorUpdater?.localSupa
48
49
  }