@imtbl/webhook 2.0.0-alpha.8 → 2.0.0

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/README.md +1 -1
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -21,7 +21,7 @@ To install this package, run the following command:
21
21
  ```sh
22
22
  npm add @imtbl/webhook
23
23
  # or
24
- yarn add @imtbl/webhook
24
+ pnpm add @imtbl/webhook
25
25
  # or
26
26
  pnpm add @imtbl/webhook
27
27
  ```
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@imtbl/webhook",
3
3
  "description": "Utility for interacting with Immutable's webhook",
4
- "version": "2.0.0-alpha.8",
4
+ "version": "2.0.0",
5
5
  "author": "Immutable",
6
6
  "bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
7
7
  "dependencies": {
8
- "@imtbl/config": "2.0.0-alpha.8",
9
- "@imtbl/generated-clients": "2.0.0-alpha.8",
8
+ "@imtbl/config": "2.0.0",
9
+ "@imtbl/generated-clients": "2.0.0",
10
10
  "sns-validator": "^0.3.5"
11
11
  },
12
12
  "devDependencies": {
@@ -49,6 +49,7 @@
49
49
  "build": "pnpm transpile && pnpm typegen",
50
50
  "transpile": "tsup src/index.ts --config ./tsup.config.js",
51
51
  "typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types",
52
+ "pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
52
53
  "lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
53
54
  "test": "jest --passWithNoTests",
54
55
  "test:watch": "jest --watch",