honeyhive 1.0.31 → 1.0.33

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/Makefile +4 -0
  2. package/package.json +1 -2
package/Makefile CHANGED
@@ -13,6 +13,10 @@ build:
13
13
  clean:
14
14
  docker rmi honeyhive-tests || true
15
15
 
16
+ # Publish the package
17
+ publish:
18
+ npm version patch && npm publish
19
+
16
20
  # Run the tests locally (without Docker)
17
21
  test-local:
18
22
  cd tests/openai-test && npm test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "honeyhive",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "author": "HoneyHive",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
@@ -16,7 +16,6 @@
16
16
  "scripts": {
17
17
  "lint": "eslint --max-warnings=0 src",
18
18
  "build": "npm install && tsc",
19
- "publish": "npm version patch && npm publish",
20
19
  "prepublishOnly": "npm run build"
21
20
  },
22
21
  "peerDependencies": {