mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-31 02:55:58 +01:00 
			
		
		
		
	feat: update lru-cache to 9.x, closes #11454
This commit is contained in:
		| @@ -81,7 +81,7 @@ | |||||||
|         "less": "4.1.3", |         "less": "4.1.3", | ||||||
|         "lodash": "4.17.21", |         "lodash": "4.17.21", | ||||||
|         "logrotate-stream": "0.2.9", |         "logrotate-stream": "0.2.9", | ||||||
|         "lru-cache": "8.0.5", |         "lru-cache": "9.0.1", | ||||||
|         "material-design-lite": "1.3.0", |         "material-design-lite": "1.3.0", | ||||||
|         "mime": "3.0.0", |         "mime": "3.0.0", | ||||||
|         "mkdirp": "2.1.6", |         "mkdirp": "2.1.6", | ||||||
|   | |||||||
							
								
								
									
										4
									
								
								src/cache/lru.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								src/cache/lru.js
									
									
									
									
										vendored
									
									
								
							| @@ -1,7 +1,7 @@ | |||||||
| 'use strict'; | 'use strict'; | ||||||
|  |  | ||||||
| module.exports = function (opts) { | module.exports = function (opts) { | ||||||
| 	const LRU = require('lru-cache'); | 	const { LRUCache } = require('lru-cache'); | ||||||
| 	const pubsub = require('../pubsub'); | 	const pubsub = require('../pubsub'); | ||||||
|  |  | ||||||
| 	// lru-cache@7 deprecations | 	// lru-cache@7 deprecations | ||||||
| @@ -28,7 +28,7 @@ module.exports = function (opts) { | |||||||
| 		} | 		} | ||||||
| 	}); | 	}); | ||||||
|  |  | ||||||
| 	const lruCache = new LRU(opts); | 	const lruCache = new LRUCache(opts); | ||||||
|  |  | ||||||
| 	const cache = {}; | 	const cache = {}; | ||||||
| 	cache.name = opts.name; | 	cache.name = opts.name; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user