Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "pjobs", | ||
"description": "A simple and efficient queue job executor using promises. And some promise's utilities.", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"private": false, | ||
@@ -20,8 +20,9 @@ "main": "dist/index.js", | ||
"scripts": { | ||
"buildDTS": "dts-bundle-generator --project ./tsconfig.build.json --verbose", | ||
"build": "./build.sh", | ||
"buildDTS": "dts-bundle-generator --project ./tsconfig.build.json src/index.ts -o dist/index.d.ts", | ||
"buildWithEsbuild": "esbuild --bundle src/index.ts --platform=node --format=cjs --minify --outfile=dist/index.js", | ||
"buildWithTSC": "tsc -p ./tsconfig.build.json", | ||
"prepublishOnly": "yarn test && yarn buildWithTSC", | ||
"test": "jest --config ../jest.config.js .", | ||
"clean": "monoclean clean" | ||
"test": "yarn buildWithEsbuild ; jest --config ../jest.config.js .", | ||
"prepublishOnly": "yarn build && yarn test && yarn buildWithTSC" | ||
} | ||
} |
8769
13