From 7ef1859ed6666ae78e293fc2795a0045b7aa0f94 Mon Sep 17 00:00:00 2001 From: Skyler Dong Date: Thu, 23 Jul 2020 16:25:56 -0500 Subject: [PATCH] Attempt to fix path bug in package.json (#32) * v0.0.2-1 * Attempt to fix rel path bug in package.json --- package.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 42339ec..d9e7ba6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vaniquery", - "version": "0.0.2-0", + "version": "0.0.2-1", "author": "Badwater Bay (https://badwaterbay.com/)", "contributors": [ "Skyler Dong (https://skylerdong.com/)" @@ -23,15 +23,14 @@ "converter" ], "bin": { - "vaniquery": "./build/bin/vaniquery.js" + "vaniquery": "build/bin/vaniquery.js" }, "main": "build/bin/vaniquery.js", "files": [ "package.json", "README.md", "LICENSE", - "CONTRIBUTING.md", - "/build/**/*" + "build/**/*" ], "scripts": { "ci": "yarn --frozen-lockfile",