@rareprotocol/rare-cli 1.0.0 → 1.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rareprotocol/rare-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "CLI tool for interacting with the RARE protocol smart contracts",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -70,10 +70,11 @@
70
70
  "knip": "knip",
71
71
  "lint": "eslint .",
72
72
  "lint:fix": "eslint . --fix",
73
- "test": "npm run build && vitest run test/unit test/integration test/e2e --config vitest.config.ts",
74
- "test:live": "npm run build && vitest run test/unit test/integration test/e2e test/e2e-live --config vitest.config.ts",
73
+ "test:typecheck": "tsc -p tsconfig.test.json --noEmit",
74
+ "test": "npm run build && npm run test:typecheck && vitest run test/unit test/integration test/e2e --config vitest.config.ts",
75
+ "test:live": "npm run build && npm run test:typecheck && vitest run test/unit test/integration test/e2e test/e2e-live --config vitest.config.ts",
75
76
  "test:clear-locks": "node scripts/clear-locks.mjs",
76
- "test:coverage": "npm run build && vitest run test/unit test/integration test/e2e --coverage --config vitest.config.ts",
77
+ "test:coverage": "npm run build && npm run test:typecheck && vitest run test/unit test/integration test/e2e --coverage --config vitest.config.ts",
77
78
  "prepare": "npm run build",
78
79
  "prepublishOnly": "npm run build"
79
80
  },