inngest-cli 1.15.0 → 1.15.2

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.
Files changed (2) hide show
  1. package/bin/inngest +16 -0
  2. package/package.json +2 -2
package/bin/inngest CHANGED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.error('Error: Inngest CLI binary not found.');
4
+ console.error('');
5
+ console.error('This happened because install scripts were skipped.');
6
+ console.error('To fix this, use the method most appropriate for your setup');
7
+ console.error('');
8
+ console.error('one-off npx run:');
9
+ console.error(' NPM_CONFIG_CACHE=$(mktemp -d) npx --ignore-scripts=false inngest-cli@latest');
10
+ console.error('');
11
+ console.error('or delete your npx cache at ~/.npm/_npx and run:');
12
+ console.error(' npx --ignore-scripts=false inngest-cli@latest');
13
+ console.error('');
14
+ console.error('if you are using npm install:');
15
+ console.error(' npm rebuild --ignore-scripts=false inngest-cli');
16
+ process.exit(1);
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "inngest-cli",
3
- "version": "1.15.0",
3
+ "version": "1.15.2",
4
4
  "description": "The leading workflow orchestration platform. Run stateful step functions and AI workflows on serverless, servers, or the edge.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
7
- "prepublishOnly": "touch bin/inngest && cp ../README.md .",
7
+ "prepublishOnly": "cp ../README.md .",
8
8
  "postinstall": "node postinstall.js",
9
9
  "build": "tsc"
10
10
  },