inngest 2.5.0 → 2.5.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # inngest
2
2
 
3
+ ## 2.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#302](https://github.com/inngest/inngest-js/pull/302) [`5b2bfac`](https://github.com/inngest/inngest-js/commit/5b2bfac61f3b3f4ecbfdedca3e3c18be1393eb88) Thanks [@jpwilliams](https://github.com/jpwilliams)! - Remove `preinstall` script from `inngest` package causing errors when consuming the package
8
+
3
9
  ## 2.5.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inngest",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
4
4
  "description": "Official SDK for Inngest.com",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -8,12 +8,11 @@
8
8
  "registry": "https://registry.npmjs.org"
9
9
  },
10
10
  "scripts": {
11
- "preinstall": "npx only-allow pnpm",
12
11
  "prebuild": "pnpm run pb:version",
13
12
  "pb:version": "genversion --semi --double --es6 ./src/version.ts",
14
13
  "build": "pnpm run clean && tsc --project tsconfig.build.json",
15
14
  "test": "jest --silent --logHeapUsage --maxWorkers=8 --coverage --ci",
16
- "test:examples": "jest --logHeapUsage --maxWorkers=8 --testMatch \"**/examples/**/*.test.ts\" --ci --verbose",
15
+ "test:examples": "jest --logHeapUsage --maxWorkers=8 --testMatch \"**/test/functions/**/*.test.ts\" --ci --verbose",
17
16
  "test:types": "tsc --noEmit --project tsconfig.types.json --listFiles",
18
17
  "clean": "rm -rf ./dist",
19
18
  "lint": "eslint .",
@@ -26,7 +25,8 @@
26
25
  "build:api": "api-extractor run --local --verbose",
27
26
  "build:check": "api-extractor run --verbose",
28
27
  "build:copy": "cp package.json LICENSE.md README.md CHANGELOG.md dist",
29
- "local:pack": "pnpm run build && pnpm run build:copy && yarn pack --verbose --frozen-lockfile --filename inngest.tgz --cwd dist"
28
+ "local:pack": "pnpm run build && pnpm run build:copy && yarn pack --verbose --frozen-lockfile --filename inngest.tgz --cwd dist",
29
+ "dev:example": "tsx scripts/runExample.ts"
30
30
  },
31
31
  "homepage": "https://github.com/inngest/inngest-js#readme",
32
32
  "repository": {
@@ -64,8 +64,10 @@
64
64
  "@microsoft/api-extractor": "^7.33.7",
65
65
  "@types/aws-lambda": "^8.10.108",
66
66
  "@types/express": "^4.17.13",
67
+ "@types/inquirer": "^9.0.3",
67
68
  "@types/jest": "^27.4.1",
68
69
  "@types/json-stringify-safe": "^5.0.0",
70
+ "@types/minimist": "^1.2.2",
69
71
  "@types/ms": "^0.7.31",
70
72
  "@types/node": "^18.16.16",
71
73
  "@types/sha.js": "^2.4.0",
@@ -79,7 +81,9 @@
79
81
  "eslint-plugin-prettier": "^4.2.1",
80
82
  "express": "^4.18.2",
81
83
  "genversion": "^3.1.1",
84
+ "inquirer": "^9.2.10",
82
85
  "jest": "^29.3.1",
86
+ "minimist": "^1.2.8",
83
87
  "next": "^12.3.0",
84
88
  "nock": "^13.2.9",
85
89
  "node-mocks-http": "^1.11.0",
@@ -87,6 +91,7 @@
87
91
  "prettier": "^2.7.1",
88
92
  "shx": "^0.3.4",
89
93
  "ts-jest": "^29.1.0",
94
+ "tsx": "^3.12.7",
90
95
  "type-plus": "^5.1.0",
91
96
  "typescript": "^5.0.0",
92
97
  "ulid": "^2.3.0"
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const version = "2.5.0";
1
+ export declare const version = "2.5.1";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -2,5 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
4
  // Generated by genversion.
5
- exports.version = "2.5.0";
5
+ exports.version = "2.5.1";
6
6
  //# sourceMappingURL=version.js.map