From a45ac302584649518eb6341c5e2c0c905772999b Mon Sep 17 00:00:00 2001 From: OfficialCRUGG Date: Sat, 1 Oct 2022 17:30:05 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Updated=20package=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.dist.json | 11 +++++++++++ package.json | 8 ++++---- 2 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 package.dist.json diff --git a/package.dist.json b/package.dist.json new file mode 100644 index 0000000..e1170ff --- /dev/null +++ b/package.dist.json @@ -0,0 +1,11 @@ +{ + "name": "@blazingworks/utils", + "version": "1.0.0", + "description": "Various development utilities by BlazingWorks", + "main": "index.js", + "types": "index.d.ts", + "repository": "https://github.com/blazingworks/utils.git", + "author": "BlazingWorks", + "license": "MIT", + "private": false +} diff --git a/package.json b/package.json index 1ffb4a2..39e40df 100644 --- a/package.json +++ b/package.json @@ -2,18 +2,18 @@ "name": "@blazingworks/utils", "version": "1.0.0", "description": "Various development utilities by BlazingWorks", - "main": "dist/utils.js", - "types": "dist/utils.d.ts", + "main": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist/**/*" ], "repository": "https://github.com/blazingworks/utils.git", "author": "BlazingWorks", "license": "MIT", - "private": false, + "private": true, "scripts": { "build": "rimraf dist && tsc && npm run build:after", - "build:after": "cp package.dist.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE && cp TRANSPORTS.md dist/TRANSPORTS.md", + "build:after": "cp package.dist.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE", "prettier": "prettier --write \"src/**/*.ts\"", "lint": "eslint src/**/*.ts", "prettier:ci": "prettier --check \"src/**/*.ts\"",