@globio/cli 0.1.5 → 0.1.6

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.js CHANGED
@@ -793,6 +793,7 @@ async function init(options = {}) {
793
793
 
794
794
  export const globio = new Globio({
795
795
  apiKey: process.env.GLOBIO_API_KEY!,
796
+ projectId: '${activeProjectId}',
796
797
  });
797
798
  `
798
799
  );
package/jsr.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globio/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "license": "MIT",
5
5
  "exports": "./src/index.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globio/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "The official CLI for Globio — game backend as a service",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -48,6 +48,7 @@ export async function init(options: { profile?: string } = {}) {
48
48
 
49
49
  export const globio = new Globio({
50
50
  apiKey: process.env.GLOBIO_API_KEY!,
51
+ projectId: '${activeProjectId}',
51
52
  });
52
53
  `
53
54
  );