Skip to content

Commit

Permalink
Updating .npmignore, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
avoidwork committed Oct 4, 2023
1 parent df45cd5 commit e720f07
Show file tree
Hide file tree
Showing 8 changed files with 84 additions and 76 deletions.
2 changes: 2 additions & 0 deletions .npmignore
@@ -1,7 +1,9 @@
.idea
.husky
.nyc_output
src
test
.eslintrc
.gitignore
rollup.config.js
benchmark.js
2 changes: 1 addition & 1 deletion dist/tiny-lru.cjs
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2023 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.2.1
* @version 11.2.2
*/
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion dist/tiny-lru.js
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2023 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.2.1
* @version 11.2.2
*/
class LRU {
constructor (max = 0, ttl = 0, resetTtl = false) {
Expand Down
2 changes: 1 addition & 1 deletion dist/tiny-lru.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/tiny-lru.umd.js
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2023 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.2.1
* @version 11.2.2
*/
(function(g,f){typeof exports==='object'&&typeof module!=='undefined'?f(exports):typeof define==='function'&&define.amd?define(['exports'],f):(g=typeof globalThis!=='undefined'?globalThis:g||self,f(g.lru={}));})(this,(function(exports){'use strict';class LRU {
constructor (max = 0, ttl = 0, resetTtl = false) {
Expand Down
2 changes: 1 addition & 1 deletion dist/tiny-lru.umd.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

144 changes: 75 additions & 69 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "tiny-lru",
"description": "Tiny LRU cache for Client or Server",
"version": "11.2.1",
"version": "11.2.2",
"homepage": "https://github.com/avoidwork/tiny-lru",
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"repository": {
Expand Down Expand Up @@ -47,7 +47,7 @@
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"precise": "^2.0.1",
"precise": "^4.0.0",
"rollup": "^3.29.2",
"typescript": "^5.2.2"
},
Expand Down

0 comments on commit e720f07

Please sign in to comment.