@injectivelabs/exceptions 1.16.1 → 1.16.2-alpha.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 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -7,7 +7,7 @@ Providing rich errors and converting some vague error messages thrown from Injec
7
7
  ## 📚 Installation
8
8
 
9
9
  ```bash
10
- yarn add @injectivelabs/exceptions
10
+ pnpm add @injectivelabs/exceptions
11
11
  ```
12
12
 
13
13
  ---
@@ -34,7 +34,6 @@ Apache License <br />
34
34
  Version 2.0, January 2004 <br />
35
35
  http://www.apache.org/licenses/
36
36
 
37
-
38
37
  <p>&nbsp;</p>
39
38
  <div align="center">
40
39
  <sub><em>Powering the future of decentralized finance.</em></sub>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/exceptions",
3
3
  "description": "List of exceptions that can be reused throughout Injective's projects.",
4
- "version": "1.16.1",
4
+ "version": "1.16.2-alpha.0",
5
5
  "sideEffects": false,
6
6
  "license": "Apache-2.0",
7
7
  "type": "module",
@@ -41,10 +41,10 @@
41
41
  }
42
42
  },
43
43
  "scripts": {
44
- "build": "yarn build:cjs && yarn build:esm && yarn build:post",
44
+ "build": "pnpm build:cjs && pnpm build:esm && pnpm build:post",
45
45
  "build:cjs": "tsc --build --force tsconfig.build.json",
46
46
  "build:esm": "tsc --build --force tsconfig.build.esm.json",
47
- "build:watch": "tsc --build -w tsconfig.build.json && tsc -w --build tsconfig.build.esm.json && yarn build:post",
47
+ "build:watch": "tsc --build -w tsconfig.build.json && tsc -w --build tsconfig.build.esm.json && pnpm build:post",
48
48
  "build:post": "shx cp ../../etc/stub/package.json.stub dist/cjs/package.json && shx cp ../../etc/stub/package.esm.json.stub dist/esm/package.json",
49
49
  "clean": "tsc --build tsconfig.build.json --clean && tsc --build tsconfig.build.esm.json --clean && shx rm -rf coverage *.log junit.xml dist && jest --clearCache && shx mkdir -p dist",
50
50
  "test": "jest",
@@ -61,5 +61,5 @@
61
61
  "devDependencies": {
62
62
  "shx": "^0.3.4"
63
63
  },
64
- "gitHead": "77bb7f386f137f8b8a45572ac4ea6427e2517166"
64
+ "gitHead": "0377b0c3b44d79b598d08ca01930057dc05d9c7a"
65
65
  }