diff --git a/README.md b/README.md index 1e797f8..65579d8 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,8 @@ if (!fs.existsSync(bigCSVPath)) { 📚 For more information check out [the documentation](https://jsdocs.io/package/platformdirs) +You can quickly dump all the directories for the current environment by running the included `platformdirs` CLI command. This is hepful for finding out where `dirs.userConfigDir` actually saved your file. + ```sh npx platformdirs ``` diff --git a/package.json b/package.json index 776d00e..2224843 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "platformdirs", - "version": "4.3.6-rc1", + "version": "4.3.6", "description": "📂 Unified interface to get platform-specific directories", "keywords": [ "nodejs", @@ -32,7 +32,9 @@ "bin": { "platformdirs": "dist/main.js" }, - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "build": "tsc --noCheck", "format": "biome format --write .",