From 2690fc871291e73d3d028df9668e8fffb1e77476 Mon Sep 17 00:00:00 2001 From: release-bot Date: Thu, 12 Feb 2026 15:42:38 +0100 Subject: [PATCH] chore: gitignore pnpm-store --- .gitignore | 2 + .../package.json | 106 ------------------ 2 files changed, 2 insertions(+), 106 deletions(-) delete mode 100644 .pnpm-store/v10/tmp/_tmp_246_3d4e72dd61afc4a70a63a40107e5b425/package.json diff --git a/.gitignore b/.gitignore index e500d05..1fec282 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ node_modules/ /target .direnv/ + +.pnpm-store/ diff --git a/.pnpm-store/v10/tmp/_tmp_246_3d4e72dd61afc4a70a63a40107e5b425/package.json b/.pnpm-store/v10/tmp/_tmp_246_3d4e72dd61afc4a70a63a40107e5b425/package.json deleted file mode 100644 index 8222122..0000000 --- a/.pnpm-store/v10/tmp/_tmp_246_3d4e72dd61afc4a70a63a40107e5b425/package.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "name": "chokidar-cli", - "description": "Ultra-fast cross-platform command line utility to watch file system changes.", - "version": "0.0.4", - "keywords": [ - "fs", - "watch", - "watchFile", - "watcher", - "watching", - "file", - "fsevents", - "chokidar", - "cli", - "command", - "shell", - "bash" - ], - "bin": { - "chokidar": "index.js" - }, - "homepage": "https://github.com/open-cli-tools/chokidar-cli", - "author": "Kimmo Brunfeldt ", - "repository": { - "type": "git", - "url": "https://github.com/open-cli-tools/chokidar-cli.git" - }, - "bugs": { - "url": "http://github.com/open-cli-tools/chokidar-cli/issues" - }, - "license": "MIT", - "dependencies": { - "chokidar": "^3.5.2", - "lodash.debounce": "^4.0.8", - "lodash.throttle": "^4.1.1", - "yargs": "^18.0.0" - }, - "devDependencies": { - "eslint": "^8.57.1", - "mocha": "^11.7.2" - }, - "scripts": { - "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .", - "mocha": "mocha", - "test": "npm run lint && npm run mocha" - }, - "engines": { - "node": ">= 20.0.0" - }, - "files": [ - "*.js" - ], - "eslintConfig": { - "extends": "eslint:recommended", - "parserOptions": { - "ecmaVersion": 9, - "sourceType": "script" - }, - "env": { - "node": true, - "es6": true - }, - "rules": { - "array-callback-return": "error", - "indent": [ - "error", - 4 - ], - "no-empty": [ - "error", - { - "allowEmptyCatch": true - } - ], - "object-shorthand": "error", - "prefer-arrow-callback": [ - "error", - { - "allowNamedFunctions": true - } - ], - "prefer-const": [ - "error", - { - "ignoreReadBeforeAssign": true - } - ], - "prefer-destructuring": [ - "error", - { - "object": true, - "array": false - } - ], - "prefer-spread": "error", - "prefer-template": "error", - "radix": "error", - "strict": "error", - "quotes": [ - "error", - "single" - ], - "no-var": "error" - } - } -}