@visulima/fs
Advanced tools
Comparing version 2.3.7 to 2.3.8
@@ -0,1 +1,17 @@ | ||
## @visulima/fs [2.3.8](https://github.com/visulima/visulima/compare/@visulima/fs@2.3.7...@visulima/fs@2.3.8) (2025-01-22) | ||
### Styles | ||
* cs fixes ([f615a6a](https://github.com/visulima/visulima/commit/f615a6af4c0d4fb9ec054565fe5c93e88df487e9)) | ||
### Miscellaneous Chores | ||
* **fs:** changed wrong name in test, moved parameter out of the try ([09c73c8](https://github.com/visulima/visulima/commit/09c73c815df2a1cb9ab3a7c3500c69d347c40368)) | ||
* updated all dev dependencies and all dependencies in the app folder ([87f4ccb](https://github.com/visulima/visulima/commit/87f4ccbf9f7900ec5b56f3c1477bc4a0ef571bcf)) | ||
### Dependencies | ||
* **@visulima/error:** upgraded to 4.4.14 | ||
## @visulima/fs [2.3.7](https://github.com/visulima/visulima/compare/@visulima/fs@2.3.6...@visulima/fs@2.3.7) (2025-01-13) | ||
@@ -2,0 +18,0 @@ |
@@ -67,3 +67,3 @@ import { W as WalkOptions, F as FindUpName, a as FindUpOptions, b as FindUpNameSync, c as WalkEntry, R as ReadFileOptions, C as ContentType, J as JsonValue, d as ReadJsonOptions, e as JsonReviver, f as ReadYamlOptions, Y as YamlReviver, E as EmptyDirOptions, g as WriteFileOptions, h as WriteJsonOptions, i as YamlReplacer } from './packem_shared/observable-like.d-CJo2GVD9.d.mjs'; | ||
readonly gzip: typeof unzipSync; | ||
readonly none: (buffer: Buffer) => Buffer; | ||
readonly none: (buffer: Buffer) => Buffer<ArrayBufferLike>; | ||
}; | ||
@@ -70,0 +70,0 @@ declare const readFileSync: <O extends ReadFileOptions<keyof typeof decompressionMethods> | undefined = undefined>(path: URL | string, options?: O) => ContentType<O>; |
{ | ||
"name": "@visulima/fs", | ||
"version": "2.3.7", | ||
"version": "2.3.8", | ||
"description": "Human friendly file system utilities for Node.js", | ||
@@ -138,40 +138,2 @@ "keywords": [ | ||
}, | ||
"devDependencies": { | ||
"@anolilab/eslint-config": "^15.0.3", | ||
"@anolilab/prettier-config": "^5.0.14", | ||
"@anolilab/semantic-release-pnpm": "^1.1.6", | ||
"@anolilab/semantic-release-preset": "^9.0.3", | ||
"@arethetypeswrong/cli": "^0.17.2", | ||
"@babel/core": "^7.26.0", | ||
"@rushstack/eslint-plugin-security": "^0.8.3", | ||
"@types/node": "18.19.15", | ||
"@visulima/error": "4.4.13", | ||
"@visulima/packem": "1.10.7", | ||
"@vitest/coverage-v8": "^2.1.8", | ||
"@vitest/ui": "^2.1.8", | ||
"conventional-changelog-conventionalcommits": "8.0.0", | ||
"cross-env": "^7.0.3", | ||
"detect-indent": "^7.0.1", | ||
"esbuild": "0.24.2", | ||
"eslint": "8.57.0", | ||
"eslint-plugin-deprecation": "^3.0.0", | ||
"eslint-plugin-etc": "^2.0.3", | ||
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1", | ||
"eslint-plugin-mdx": "^3.1.5", | ||
"eslint-plugin-vitest": "^0.5.4", | ||
"eslint-plugin-vitest-globals": "^1.5.0", | ||
"fast-safe-stringify": "2.1.1", | ||
"prettier": "^3.4.2", | ||
"redos-detector": "^6.1.2", | ||
"rimraf": "6.0.1", | ||
"safe-regex2": "^4.0.1", | ||
"semantic-release": "24.2.1", | ||
"tempy": "^3.1.0", | ||
"type-fest": "^4.32.0", | ||
"typedoc": "0.27.6", | ||
"typedoc-plugin-markdown": "4.4.1", | ||
"typedoc-plugin-rename-defaults": "0.7.2", | ||
"typescript": "5.7.3", | ||
"vitest": "^2.1.8" | ||
}, | ||
"engines": { | ||
@@ -188,37 +150,3 @@ "node": ">=18.* <=23.*" | ||
"provenance": true | ||
}, | ||
"anolilab": { | ||
"eslint-config": { | ||
"plugin": { | ||
"tsdoc": false | ||
}, | ||
"warn_on_unsupported_typescript_version": false, | ||
"info_on_disabling_jsx_react_rule": false, | ||
"info_on_disabling_prettier_conflict_rule": false, | ||
"info_on_disabling_jsonc_sort_keys_rule": false, | ||
"info_on_disabling_etc_no_deprecated": false | ||
} | ||
}, | ||
"sources": [ | ||
"src/index.ts", | ||
"src/error.ts", | ||
"src/utils.ts" | ||
], | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=development packem build", | ||
"build:prod": "cross-env NODE_ENV=production packem build", | ||
"clean": "rimraf node_modules dist .eslintcache", | ||
"dev": "pnpm run build --watch", | ||
"lint:attw": "attw --pack", | ||
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs", | ||
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix", | ||
"lint:package-json": "publint --strict", | ||
"lint:prettier": "prettier --config=.prettierrc.cjs --check .", | ||
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .", | ||
"lint:types": "tsc --noEmit", | ||
"test": "vitest run", | ||
"test:coverage": "vitest run --coverage", | ||
"test:ui": "vitest --ui --coverage.enabled=true", | ||
"test:watch": "vitest" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
316980
0
4520