From d8da634c8b811a9cde47f44dc74fa0ffc2f0701e Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Thu, 19 Dec 2019 18:01:43 -0700 Subject: [PATCH] Cosmetic updates to package.json --- package.json | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 99e4983d60..2899d9fdb7 100644 --- a/package.json +++ b/package.json @@ -9,27 +9,25 @@ }, "license": "Apache-2.0", "files": [ + "lib", + "res", + "src", + "scripts", + "git-revision.txt", + "header", "CHANGELOG.md", "CONTRIBUTING.rst", "LICENSE", "README.md", - "code_style.md", - "git-revision.txt", - "header", - "lib", - "package.json", - "scripts", - "docs", - "src", - "res" + "package.json" ], "bin": { "reskindex": "scripts/reskindex.js", "matrix-gen-i18n": "scripts/gen-i18n.js", "matrix-prune-i18n": "scripts/prune-i18n.js" }, - "main": "lib/index.js", - "typings": "lib/index.d.ts", + "main": "./lib/index.js", + "typings": "./lib/index.d.ts", "scripts": { "i18n": "matrix-gen-i18n", "prunei18n": "matrix-prune-i18n", @@ -40,7 +38,7 @@ "rethemendex": "res/css/rethemendex.sh", "clean": "rimraf lib", "build": "yarn clean && git rev-parse HEAD > git-revision.txt && yarn build:compile && yarn build:types", - "build:compile": "yarn reskindex && babel src -s -d lib --verbose --extensions \".ts,.js\"", + "build:compile": "yarn reskindex && babel -d lib --verbose --extensions \".ts,.js\" src", "build:types": "tsc --emitDeclarationOnly", "start": "echo THIS IS FOR LEGACY PURPOSES ONLY. && yarn start:all", "start:all": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n build,reskindex \"yarn start:build\" \"yarn reskindex:watch\"",