diff --git a/package.json b/package.json index f3bfe08..a9c3d76 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "pg-mem", - "version": "2.9.1", + "version": "3.0.0", "description": "A memory version of postgres", "main": "index.js", "scripts": { "build": "rimraf lib && NODE_OPTIONS=--openssl-legacy-provider webpack --config ./tools/webpack.config.js --prod && bun build-types", "build-types": "rimraf lib/types && tsc --project tsconfig.json && copyfiles -u 2 \"lib-types/src/**/*.ts\" lib/types && rimraf lib/types/tests && rimraf lib-types && echo \"export * from './types';\" >> lib/index.d.ts", - "release": "git diff --exit-code && bun test && bun build && bun build:deno && deno run tools/deno-test.ts && cd lib && npm publish && cd .. && bun release-deno", + "release": "git diff --exit-code && bun test && bun run build && bun build:deno && deno run tools/deno-test.ts && cd lib && npm publish && cd .. && bun release-deno", "release-deno": "git add -A && git commit -m \"Build deno [autogenerated commit]\" && PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags", "start:playground": "NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --hot --config ./tools/playground.webpack.config.js", "build:playground": "NODE_OPTIONS=--openssl-legacy-provider webpack --config ./tools/playground.webpack.config.js --prod",