Merge pull request #256914 from n3oney/update-prettierd

prettierd: 0.23.4 -> 0.25.1
This commit is contained in:
Weijia Wang 2023-09-23 19:48:05 +02:00 committed by GitHub
commit 1c4e4c55c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 12 deletions

View File

@ -8,18 +8,18 @@
}:
mkYarnPackage rec {
pname = "prettierd";
version = "0.23.4";
version = "0.25.1";
src = fetchFromGitHub {
owner = "fsouza";
repo = "prettierd";
rev = "v${version}";
hash = "sha256-GTukjkA/53N9ICdfCJr5HAqhdL5T0pth6zAk8Fu/cis=";
hash = "sha256-aoRfZ9SJazz0ir1fyHypn3aYqK9DJOLLVPMuFcOm/20=";
};
offlineCache = fetchYarnDeps {
yarnLock = src + "/yarn.lock";
hash = "sha256-32wMwkVgO5DQuROWnujVGNeCAUq1D6jJurecsD2ROOU=";
hash = "sha256-HsWsRIONRNY9akZ2LXlWcPhH6N5qCKnesaDX1gQp+NU=";
};
packageJSON = ./package.json;

View File

@ -1,6 +1,6 @@
{
"name": "@fsouza/prettierd",
"version": "0.23.4",
"version": "0.25.1",
"description": "prettier, as a daemon",
"bin": {
"prettierd": "./bin/prettierd"
@ -24,14 +24,13 @@
},
"homepage": "https://github.com/fsouza/prettierd",
"devDependencies": {
"@types/node": "^20.2.5",
"@types/prettier": "^2.7.2",
"typescript": "^5.0.4"
"@types/node": "^20.6.3",
"@types/prettier": "^3.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"core_d": "^5.0.1",
"nanolru": "^1.0.0",
"prettier": "^2.8.8"
"core_d": "^6.0.0",
"prettier": "^3.0.3"
},
"files": [
"bin",
@ -40,7 +39,7 @@
"README.md"
],
"optionalDependencies": {
"@babel/parser": "^7.22.3",
"@typescript-eslint/typescript-estree": "^5.59.7"
"@babel/parser": "^7.22.16",
"@typescript-eslint/typescript-estree": "^6.7.2"
}
}