From 38b611e8ba622afa10c680fd797a66f1babdf2ea Mon Sep 17 00:00:00 2001 From: Izel Nakri Date: Tue, 11 Feb 2020 12:05:29 +0100 Subject: [PATCH] v2.0.6 rollup bundle optimization --- package-lock.json | 2 +- package.json | 2 +- rollup.config.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index f290aa5..748c9b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "memserver", - "version": "2.0.5", + "version": "2.0.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e71caa1..efff7e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "memserver", - "version": "2.0.5", + "version": "2.0.6", "description": "in-memory database/ORM and http mock server you can run in-browser and node environments. Built for large frontend teams, fast tests and rapid prototyping", "author": "Izel Nakri", "repository": { diff --git a/rollup.config.js b/rollup.config.js index 3742ceb..aa5cd61 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -6,5 +6,5 @@ export default { output: { format: "cjs" }, - plugins: [resolve({ preferBuiltins: false, mainFields: ["jsnext"] }), commonjs({})] + plugins: [resolve({ preferBuiltins: false, mainFields: ["jsnext"] }), commonjs({ ignore: ['./model'] })] };