From 5908f290bea759a167d22cf9efb1513d9febda48 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 3 Sep 2020 08:31:47 +0200 Subject: [PATCH 1/2] [FIX] main file path in package json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 61936ca..fe1eba5 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "WebSockets", "real-time" ], - "main": "index.js", + "main": "dist/index.js", "scripts": { "lint": "eslint --ext .ts --quiet --fix ./", "clean": "rm -rf dist && mkdir dist", From 6b748e6207bd71d236fa7206e7fe95352b31040e Mon Sep 17 00:00:00 2001 From: John Date: Thu, 3 Sep 2020 08:33:10 +0200 Subject: [PATCH 2/2] [MOD] changelog and bump version to 1.0.3 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd94931..b214da0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.3] - 2020-09-03 +### Changed +- fixed main file path in package json + ## [1.0.2] - 2020-08-31 ### Added - npm package description diff --git a/package.json b/package.json index fe1eba5..74d4581 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rpc-websocketserver", - "version": "1.0.2", + "version": "1.0.3", "description": "Simple rpc websocket server, wrapping the very popular 'ws' library. Register your RPCs with convenient decorators.", "keywords": [ "RPC",