From 9ee07d70790ac7c5b7e35dc8fb155b1d04ddac29 Mon Sep 17 00:00:00 2001 From: Florian Rappl Date: Sun, 25 Feb 2018 15:25:19 +0100 Subject: [PATCH] Adjusted changelog --- CHANGELOG.md | 9 +++++++++ package.json | 5 +++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3b2ba9..cc8115c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.4.1 + +- Added utils module for kras injectors, use `kras/utils` +- Fixed picking wrong paths in local injector debug mode +- Improved injector file options in the API and client +- Improved injector directory options in the API and client +- Allow switching `delay` in the client for the har-injector +- Added `randomize` option for the json-injector + ## 0.4.0 - Changed default base directory from `db` to `mocks` diff --git a/package.json b/package.json index 64a2889..d51ce13 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kras", - "version": "0.4.0", + "version": "0.4.1", "description": "Efficient server proxying and mocking in Node.js.", "main": "dist/server/kras.js", "types": "dist/server/kras.d.ts", @@ -25,7 +25,8 @@ "watch": "nodemon --exec ts-node -- src/server/kras-cli.ts", "build:client": "cross-env NODE_ENV=production webpack -p", "build:server": "tsc --project tsconfig.server.json", - "build": "npm run build:server && npm run build:client" + "build:utility": "tsc --project tsconfig.utility.json", + "build": "npm run build:server && npm run build:utility && npm run build:client" }, "author": "Florian Rappl ", "contributors": [],