From eb4148bdb9b27cb22b9f52b99f5b22cd5d23b380 Mon Sep 17 00:00:00 2001 From: Jason Miller Date: Wed, 17 Jun 2020 19:59:05 -0400 Subject: [PATCH] 0.2.0 --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index c510e6d..5d31060 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsdom-worker", - "version": "0.1.0", + "version": "0.2.0", "description": "Experimental Web Worker API implementation for JSDOM.", "main": "dist/jsdom-worker.js", "module": "dist/jsdom-worker.module.js", @@ -8,7 +8,8 @@ "scripts": { "build": "microbundle --external all", "test": "eslint src test && npm run -s build && jest", - "prepare": "npm run -s build && npm t" + "prepare": "npm run -s build && npm t", + "release": "npm t && git commit -am \"$npm_package_version\" && git tag $npm_package_version && git push && git push --tags && npm publish" }, "babel": { "presets": [ @@ -50,4 +51,4 @@ "mitt": "^1.1.3", "uuid-v4": "^0.1.0" } -} \ No newline at end of file +}