From df7a9d5a9ae5eea24e9ed4d2ab6da2d5fe85b947 Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Thu, 14 May 2020 12:58:32 -0700 Subject: [PATCH] refactor: package versions alignment, package files specified Signed-off-by: Peter Somogyvari --- packages/bif-cmd-api-server/package.json | 5 ++++- packages/bif-cockpit/package.json | 2 +- packages/bif-core-api/package.json | 7 ++++--- packages/bif-plugin-kv-storage-memory/package.json | 7 ++++--- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/packages/bif-cmd-api-server/package.json b/packages/bif-cmd-api-server/package.json index 790fffc0c2..f4cc85f721 100755 --- a/packages/bif-cmd-api-server/package.json +++ b/packages/bif-cmd-api-server/package.json @@ -1,10 +1,13 @@ { "name": "@hyperledger-labs/bif-cmd-api-server", - "version": "0.0.1", + "version": "0.2.0", "description": "API server that combines and exposes all the functionality of a BIF deployment through a unified REST API interface.", "bin": { "bifapi": "./dist/lib/main/typescript/cmd/bif-api.js" }, + "files": [ + "dist/*" + ], "main": "dist/bif-core-api.node.umd.js", "mainMinified": "dist/bif-core-api.node.umd.min.js", "module": "dist/lib/main/typescript/index.js", diff --git a/packages/bif-cockpit/package.json b/packages/bif-cockpit/package.json index dc462d590b..d03e053def 100644 --- a/packages/bif-cockpit/package.json +++ b/packages/bif-cockpit/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger-labs/bif-cockpit", - "version": "0.0.1", + "version": "0.2.0", "files": [ "www/*" ], diff --git a/packages/bif-core-api/package.json b/packages/bif-core-api/package.json index adf7530a28..5cf4bb8219 100755 --- a/packages/bif-core-api/package.json +++ b/packages/bif-core-api/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger-labs/bif-core-api", - "version": "0.0.1", + "version": "0.2.0", "description": "Contains type definitions/interfaces for the kernel of the codebase. Kept separate from the implementation so that it is easier to use it as a dependency.", "main": "dist/bif-core-api.node.umd.js", "mainMinified": "dist/bif-core-api.node.umd.min.js", @@ -8,8 +8,9 @@ "browserMinified": "dist/bif-core-api.web.umd.min.js", "module": "dist/lib/main/typescript/index.js", "types": "dist/types/main/typescript/index.d.ts", - "scripts": { - }, + "files": [ + "dist/*" + ], "engines": { "node": ">=10", "npm": ">=6" diff --git a/packages/bif-plugin-kv-storage-memory/package.json b/packages/bif-plugin-kv-storage-memory/package.json index 0cbb8fcf39..64ef82f9b0 100755 --- a/packages/bif-plugin-kv-storage-memory/package.json +++ b/packages/bif-plugin-kv-storage-memory/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger-labs/bif-plugin-kv-storage-memory", - "version": "0.0.1", + "version": "0.2.0", "description": "Key/value storage plugin that has an in-memory backend. Only makes sense to use it for local development/demo environments where there is only a single BIF node running in your consortium.", "main": "dist/bif-plugin-kv-storage-memory.node.umd.js", "mainMinified": "dist/bif-plugin-kv-storage-memory.node.umd.min.js", @@ -8,8 +8,9 @@ "browserMinified": "dist/bif-plugin-kv-storage-memory.web.umd.min.js", "module": "dist/lib/main/typescript/index.js", "types": "dist/types/main/typescript/index.d.ts", - "scripts": { - }, + "files": [ + "dist/*" + ], "engines": { "node": ">=10", "npm": ">=6"