From 216f24c15da4c5ed910295811ba7a3a2e9bfe8c1 Mon Sep 17 00:00:00 2001 From: Travis Clarke Date: Fri, 26 Oct 2018 00:41:51 -0700 Subject: [PATCH] v1.1.4 - fix regression in README --- README.md | 2 ++ docs/DeepClone.js.html | 2 +- docs/global.html | 2 +- docs/index.html | 2 +- docs/module-DeepClone.html | 2 +- package.json | 4 ++-- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 88cdae4..f68a710 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ Light-weight deep clone implementation for JavaScript. ## Installation ```bash $ npm install @clarketm/deepclone +``` + ## Modules
diff --git a/docs/DeepClone.js.html b/docs/DeepClone.js.html index 1b3dec9..135a1d3 100644 --- a/docs/DeepClone.js.html +++ b/docs/DeepClone.js.html @@ -185,7 +185,7 @@

DeepClone.js


- Generated by JSDoc 3.5.5 on Fri Oct 26 2018 00:26:10 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.5.5 on Fri Oct 26 2018 00:44:43 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/global.html b/docs/global.html index 68a703b..7f7628c 100644 --- a/docs/global.html +++ b/docs/global.html @@ -499,7 +499,7 @@
Type:

- Generated by JSDoc 3.5.5 on Fri Oct 26 2018 00:26:10 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.5.5 on Fri Oct 26 2018 00:44:43 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/index.html b/docs/index.html index bf20464..f8ffc8b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -57,7 +57,7 @@
- Generated by JSDoc 3.5.5 on Fri Oct 26 2018 00:26:10 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.5.5 on Fri Oct 26 2018 00:44:43 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/docs/module-DeepClone.html b/docs/module-DeepClone.html index 98a582c..7564b4e 100644 --- a/docs/module-DeepClone.html +++ b/docs/module-DeepClone.html @@ -83,7 +83,7 @@

DeepClone


- Generated by JSDoc 3.5.5 on Fri Oct 26 2018 00:26:10 GMT-0700 (Pacific Daylight Time) using the Minami theme. + Generated by JSDoc 3.5.5 on Fri Oct 26 2018 00:44:43 GMT-0700 (Pacific Daylight Time) using the Minami theme.
diff --git a/package.json b/package.json index fc6f93e..4f782f9 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "@clarketm/deepclone", - "version": "1.1.2", + "version": "1.1.4", "description": "JavaScript deep clone implementation", "main": "dist/DeepClone.js", "scripts": { "build": "f=$(mktemp); babel --presets=minify src/DeepClone.js > $f; rollup $f --o dist/DeepClone.js -f umd --name 'DeepClone'", "prettier": "prettier --write ./src/**/*.js ./test/**/*.js", "docs": "jsdoc -d ./docs ./src/DeepClone.js -t ./template", - "readme": "sed -i '13,$d' ./README.md ; jsdoc2md ./src/DeepClone.js >> ./README.md", + "readme": "sed -i '15,$d' ./README.md ; jsdoc2md ./src/DeepClone.js >> ./README.md", "prep": "yarn prettier ; yarn docs ; yarn readme ; yarn build", "test": "mocha ./test/*" },