@bulletxyz/bullet-sdk 0.20.0-rc.1 → 0.21.0-rc.3

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
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "git+https://github.com/zetamarkets/bullet-sdk.git"
6
6
  },
7
- "version": "0.20.0-rc.1",
7
+ "version": "0.21.0-rc.3",
8
8
  "description": "Bullet SDK",
9
9
  "author": "@bulletxyz",
10
10
  "license": "Apache-2.0",
@@ -30,22 +30,21 @@
30
30
  "build:types": "tsc --emitDeclarationOnly --outDir dist/types && mkdir -p dist/types/bullet-wasm && cp src/bullet-wasm/index.d.ts dist/types/bullet-wasm/index.d.ts",
31
31
  "build:js": "node build.mjs",
32
32
  "clean": "rm -rf dist",
33
- "build": "pnpm clean && pnpm install && pnpm build:types && pnpm build:js",
33
+ "build": "pnpm clean && pnpm build:types && pnpm build:js",
34
34
  "dev": "tsx --experimental-wasm-modules examples/test.ts",
35
35
  "package": "pnpm build && pnpm pack",
36
- "prepublishOnly": "pnpm build",
37
36
  "prerelease": "pnpm build",
38
- "release:premajor": "npm version premajor --preid rc && git push --tags && npm publish --tag rc",
39
- "release:preminor": "npm version preminor --preid rc && git push --tags && npm publish --tag rc",
40
- "release:prepatch": "npm version prepatch --preid rc && git push --tags && npm publish --tag rc",
41
- "release:prerelease": "npm version prerelease --preid rc && git push --tags && npm publish --tag rc",
42
- "release:release": "npm run release:patch",
37
+ "release:rc:major": "npm version premajor --preid rc && git push --tags && npm publish --tag rc",
38
+ "release:rc:minor": "npm version preminor --preid rc && git push --tags && npm publish --tag rc",
39
+ "release:rc:patch": "npm version prepatch --preid rc && git push --tags && npm publish --tag rc",
40
+ "release:rc": "npm version prerelease --preid rc && git push --tags && npm publish --tag rc",
43
41
  "release:major": "npm version major && git push --tags && npm publish",
44
42
  "release:minor": "npm version minor && git push --tags && npm publish",
45
43
  "release:patch": "npm version patch && git push --tags && npm publish",
46
- "ci": "biome ci",
47
- "fix": "biome check --write",
48
- "lint": "biome lint"
44
+ "release": "npm version patch && git push --tags && npm publish",
45
+ "format": "biome check --write",
46
+ "lint": "biome lint",
47
+ "ci": "biome ci"
49
48
  },
50
49
  "devDependencies": {
51
50
  "@biomejs/biome": "^1.9.4",