Merge pull request #306825 from peteremiljensen/update-prettierd

prettierd: 0.25.1 -> 0.25.3
This commit is contained in:
Weijia Wang 2024-04-28 04:50:00 +02:00 committed by GitHub
commit 162c82bd7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 10 deletions

View file

@ -8,18 +8,18 @@
}:
mkYarnPackage rec {
pname = "prettierd";
version = "0.25.1";
version = "0.25.3";
src = fetchFromGitHub {
owner = "fsouza";
repo = "prettierd";
rev = "v${version}";
hash = "sha256-aoRfZ9SJazz0ir1fyHypn3aYqK9DJOLLVPMuFcOm/20=";
hash = "sha256-3lvFZ5/p+1kPnHIR2PlQtCY3SVo1rs8IuBigLaabxAE=";
};
offlineCache = fetchYarnDeps {
yarnLock = src + "/yarn.lock";
hash = "sha256-HsWsRIONRNY9akZ2LXlWcPhH6N5qCKnesaDX1gQp+NU=";
hash = "sha256-Ti2b102pzUKB6Xy3LwZ7DlrnW0cRscgNLTUIAKz+6Us=";
};
packageJSON = ./package.json;

View file

@ -1,6 +1,6 @@
{
"name": "@fsouza/prettierd",
"version": "0.25.1",
"version": "0.25.3",
"description": "prettier, as a daemon",
"bin": {
"prettierd": "./bin/prettierd"
@ -24,13 +24,13 @@
},
"homepage": "https://github.com/fsouza/prettierd",
"devDependencies": {
"@types/node": "^20.6.3",
"@types/node": "^20.12.7",
"@types/prettier": "^3.0.0",
"typescript": "^5.2.2"
"typescript": "^5.4.5"
},
"dependencies": {
"core_d": "^6.0.0",
"prettier": "^3.0.3"
"core_d": "^6.1.0",
"prettier": "^3.2.5"
},
"files": [
"bin",
@ -39,7 +39,7 @@
"README.md"
],
"optionalDependencies": {
"@babel/parser": "^7.22.16",
"@typescript-eslint/typescript-estree": "^6.7.2"
"@babel/parser": "^7.24.4",
"@typescript-eslint/typescript-estree": "^7.6.0"
}
}