Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

instant-cli

Package Overview
Dependencies
Maintainers
0
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

instant-cli - npm Package Compare versions

Comparing version 0.14.1 to 0.14.2

21

index.js

@@ -71,3 +71,5 @@ // @ts-check

.description("Pushes local instant.schema definition to production.")
.action(pushSchema);
.action(() => {
pushSchema();
});

@@ -78,3 +80,5 @@ program

.description("Pushes local instant.perms rules to production.")
.action(pushPerms);
.action(() => {
pushPerms();
});

@@ -122,3 +126,5 @@ program

async function pushAll(appIdOrName) {
await pushSchema(appIdOrName);
const ok = await pushSchema(appIdOrName);
if (!ok) return;
await pushPerms(appIdOrName);

@@ -431,2 +437,4 @@ }

console.log(chalk.green("Schema updated!"));
return true;
}

@@ -462,2 +470,4 @@

console.log(chalk.green("Permissions updated!"));
return true;
}

@@ -553,3 +563,5 @@

for (const error of errData.hint.errors) {
console.error(`${error.in.join("->")}: ${error.message}`);
console.error(
`${error.in ? error.in.join("->") + ": " : ""}${error.message}`,
);
}

@@ -785,2 +797,3 @@ }

process.env.NEXT_PUBLIC_INSTANT_APP_ID ||
process.env.PUBLIC_INSTANT_APP_ID || // for Svelte
process.env.VITE_INSTANT_APP_ID ||

@@ -787,0 +800,0 @@ null;

2

package.json
{
"name": "instant-cli",
"type": "module",
"version": "v0.14.1",
"version": "v0.14.2",
"description": "Instant's CLI",

@@ -6,0 +6,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc