Skip to content

Commit

Permalink
v1.1.4 - fix regression in README
Browse files Browse the repository at this point in the history
  • Loading branch information
clarketm committed Oct 26, 2018
1 parent b32b634 commit 216f24c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Light-weight deep clone implementation for JavaScript.
## Installation
```bash
$ npm install @clarketm/deepclone
```

## Modules

<dl>
Expand Down
2 changes: 1 addition & 1 deletion docs/DeepClone.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ <h1 class="page-title">DeepClone.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Oct 26 2018 00:26:10 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Oct 26 2018 00:44:43 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/global.html
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ <h5>Type:</h5>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Oct 26 2018 00:26:10 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Oct 26 2018 00:44:43 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Oct 26 2018 00:26:10 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Oct 26 2018 00:44:43 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion docs/module-DeepClone.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ <h1 class="page-title">DeepClone</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Oct 26 2018 00:26:10 GMT-0700 (Pacific Daylight Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Fri Oct 26 2018 00:44:43 GMT-0700 (Pacific Daylight Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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/*"
},
Expand Down

0 comments on commit 216f24c

Please sign in to comment.