prettierd: 0.25.1 -> 0.25.3

This commit is contained in:
Peter Emil Jensen 2024-04-25 19:19:32 +02:00
parent 1e1dc66fe6
commit a9f415a402
No known key found for this signature in database
GPG Key ID: 28E41BF3C0A30135
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"
}
}