From 23a8e6bc4bd646b6b7ce961a569c0179e91d1be0 Mon Sep 17 00:00:00 2001 From: nevehallon Date: Tue, 7 Nov 2023 17:19:25 +0200 Subject: [PATCH] chore: release v0.4.35-beta.0 --- bageldb-js/package.json | 43 ++++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/bageldb-js/package.json b/bageldb-js/package.json index 396a38c..ece52ed 100644 --- a/bageldb-js/package.json +++ b/bageldb-js/package.json @@ -1,6 +1,6 @@ { "name": "@bageldb/bagel-db", - "version": "0.4.34-beta.0.9", + "version": "0.4.35-beta.0", "description": "A simple way to communicate with BagelDB, wrapping the REST http endpoints in easy to use functions", "type": "module", "types": "./dist/index.d.ts", @@ -15,28 +15,30 @@ "./src/interfaces": "./src/interfaces.ts", "./src/index": "./src/index.ts", ".": { - "import": "./dist/index.mjs", + "import": "./dist/index.js", "require": "./dist/index.cjs", "node": { - "module": "./dist/index.mjs", - "import": "./dist/index.mjs", + "module": "./dist/index.js", + "import": "./dist/index.js", "require": "./dist/index.cjs" }, "default": "./dist/index.cjs" } }, - "module": "./dist/index.mjs", + "module": "./dist/index.js", "scripts": { - "build": "webpack --mode=production", + "typecheck": "tsc --noEmit", + "bump": "bumpp", "prepare": "npm run build", + "build": "webpack --mode=production", "start:dev": "webpack --mode=development --watch --progress", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\"", "lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "build:types": "yarn run tsc --emitDeclarationOnly", - "publish:beta:prod": "npm publish --access public --tag beta", - "publish:prod": "npm publish --access public", - "publish:dev": "npm publish --access public --dry-run" + "publish:beta:prod": "bumpp && npm publish --access public --tag beta", + "publish:prod": "bumpp && npm publish --access public", + "publish:dev": "bumpp && npm publish --access public --dry-run" }, "repository": { "type": "git", @@ -54,7 +56,7 @@ "homepage": "https://docs.bageldb.com", "dependencies": { "axios": "^1.6.0", - "mongodb": "^6.1.0", + "mongodb": "^6.2.0", "std-env": "^3.4.3" }, "optionalDependencies": { @@ -67,18 +69,19 @@ "@babel/core": "^7.23.2", "@babel/polyfill": "^7.12.1", "@babel/preset-env": "^7.23.2", - "@types/axios-curlirize": "^1.3.2", - "@types/eslint": "^8.44.4", - "@types/eventsource": "^1.1.12", - "@types/node": "^20.8.6", - "@types/webpack-node-externals": "^3.0.2", - "@typescript-eslint/eslint-plugin": "^6.8.0", - "@typescript-eslint/parser": "^6.8.0", + "bumpp": "^9.2.0", + "@types/axios-curlirize": "^1.3.5", + "@types/eslint": "^8.44.7", + "@types/eventsource": "^1.1.15", + "@types/node": "^20.8.10", + "@types/webpack-node-externals": "^3.0.3", + "@typescript-eslint/eslint-plugin": "^6.10.0", + "@typescript-eslint/parser": "^6.10.0", "clean-webpack-plugin": "^4.0.0", - "eslint": "^8.51.0", + "eslint": "^8.53.0", "eslint-config-airbnb-typescript": "^17.1.0", "eslint-config-prettier": "^9.0.0", - "eslint-plugin-import": "^2.28.1", + "eslint-plugin-import": "^2.29.0", "eslint-plugin-prettier": "^5.0.1", "expose-loader": "^4.1.0", "html-webpack-plugin": "^5.5.3", @@ -100,4 +103,4 @@ "node_modules/", "dist/" ] -} \ No newline at end of file +}