mirror of https://github.com/certd/certd
chore:
parent
80f8fd49f1
commit
0c3a812825
|
@ -26,7 +26,6 @@
|
|||
"nanoid": "^5.0.7",
|
||||
"node-forge": "^1.3.1",
|
||||
"nodemailer": "^6.9.3"
|
||||
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/chai": "^4.3.10",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// LRUCache
|
||||
|
||||
import { LRUCache } from "lru-cache";
|
||||
import { LRUCache } from 'lru-cache';
|
||||
|
||||
export const cache = new LRUCache<string, any>({
|
||||
max: 1000,
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
"build-on-docker": "node ./before-build.js && npm run build",
|
||||
"up-mw-deps": "npx midway-version -u -w",
|
||||
"heap": "cross-env NODE_ENV=pgpl clinic heapprofiler -- node ./bootstrap.js",
|
||||
"flame": "clinic flame -- node ./bootstrap.js"
|
||||
"flame": "clinic flame -- node ./bootstrap.js",
|
||||
"tsc": "tsc --skipLibCheck"
|
||||
},
|
||||
"dependencies": {
|
||||
"@alicloud/pop-core": "^1.7.10",
|
||||
|
|
|
@ -26,9 +26,5 @@
|
|||
"dist",
|
||||
"node_modules",
|
||||
"test"
|
||||
],
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"node_modules/@certd/**/src/**/*.ts"
|
||||
],
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue