@imtbl/config 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 +3 -2
package/README.md CHANGED
@@ -19,7 +19,7 @@ To install this package, run the following command:
19
19
  ```sh
20
20
  npm add @imtbl/config
21
21
  # or
22
- yarn add @imtbl/config
22
+ pnpm add @imtbl/config
23
23
  # or
24
24
  pnpm add @imtbl/config
25
25
  ```
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@imtbl/config",
3
3
  "description": "Config for Immutable SDK",
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/metrics": "2.0.0-alpha.8"
8
+ "@imtbl/metrics": "2.0.0"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@swc/core": "^1.3.36",
@@ -57,6 +57,7 @@
57
57
  "build": "pnpm transpile && pnpm typegen",
58
58
  "transpile": "tsup src/index.ts --config ../../tsup.config.js",
59
59
  "typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types",
60
+ "pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
60
61
  "lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
61
62
  "test": "jest",
62
63
  "test:watch": "jest --watch",