Skip to content

Commit

Permalink
Setting .csj extension on main value as per "Main entry point exp…
Browse files Browse the repository at this point in the history
  • Loading branch information
avoidwork committed Oct 10, 2023
1 parent 9d65707 commit 345cde5
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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.2
* @version 11.2.3
*/
'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.2
* @version 11.2.3
*/
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.2
* @version 11.2.3
*/
(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.

4 changes: 2 additions & 2 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.2",
"version": "11.2.3",
"homepage": "https://github.com/avoidwork/tiny-lru",
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"repository": {
Expand All @@ -17,7 +17,7 @@
],
"license": "BSD-3-Clause",
"source": "src/lru.js",
"main": "dist/tiny-lru",
"main": "dist/tiny-lru.cjs",
"exports": {
"types": "./lru.d.ts",
"import": "./dist/tiny-lru.js",
Expand Down

0 comments on commit 345cde5

Please sign in to comment.