From b57661bc66ffb0e3444c9ec8a8a09eec7ecaf6f6 Mon Sep 17 00:00:00 2001 From: Jared Wray Date: Fri, 6 Sep 2024 13:00:02 -0700 Subject: [PATCH] cacheable - adding in rimraf --- packages/cacheable/README.md | 1 + packages/cacheable/package.json | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/cacheable/README.md b/packages/cacheable/README.md index 03e101ca..d03b1875 100644 --- a/packages/cacheable/README.md +++ b/packages/cacheable/README.md @@ -10,6 +10,7 @@ [![npm](https://img.shields.io/npm/v/cacheable)](https://www.npmjs.com/package/cacheable) `cacheable` is a simple caching engine that uses [Keyv](https://keyv.org) as the storage engine. It is designed to be simple to use and extend. Here are some of the features: + * Simple to use with robust API * Not bloated with additional modules * Extendable to your own caching engine diff --git a/packages/cacheable/package.json b/packages/cacheable/package.json index 53f04aa7..3d7ea566 100644 --- a/packages/cacheable/package.json +++ b/packages/cacheable/package.json @@ -9,10 +9,10 @@ "license": "MIT", "private": false, "scripts": { - "build": "tsc -p tsconfig.build.json", + "build": "rimraf ./dist && tsc -p tsconfig.build.json", "test": "xo --fix", "test:ci": "xo", - "clean": "rm -rf dist && rm -rf node_modules" + "clean": "rimraf ./dist ./coverage ./node_modules" }, "devDependencies": { "rimraf": "^6.0.1", @@ -21,7 +21,7 @@ "xo": "^0.59.3" }, "dependencies": { - "hookified": "^0.7.0", + "hookified": "^0.7.1", "keyv": "^5.0.1" }, "xo": {