From aa27e3ba4643d14a5c4a883e77a272da69961207 Mon Sep 17 00:00:00 2001 From: Florent BEAUCHAMP Date: Mon, 17 Feb 2025 15:35:10 +0000 Subject: [PATCH] fix(fatfs): normalize package --- @vates/fatfs/.gitignore | 3 --- @vates/fatfs/.npmignore | 1 + @vates/fatfs/package.json | 12 +++++++----- 3 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 @vates/fatfs/.gitignore create mode 120000 @vates/fatfs/.npmignore diff --git a/@vates/fatfs/.gitignore b/@vates/fatfs/.gitignore deleted file mode 100644 index 894e41c024..0000000000 --- a/@vates/fatfs/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -.DS_Store -.vscode/ -node_modules/ diff --git a/@vates/fatfs/.npmignore b/@vates/fatfs/.npmignore new file mode 120000 index 0000000000..008d1b9b98 --- /dev/null +++ b/@vates/fatfs/.npmignore @@ -0,0 +1 @@ +../../scripts/npmignore \ No newline at end of file diff --git a/@vates/fatfs/package.json b/@vates/fatfs/package.json index a5ce133bae..83936655ae 100644 --- a/@vates/fatfs/package.json +++ b/@vates/fatfs/package.json @@ -8,8 +8,9 @@ "postversion": "npm publish --access public" }, "repository": { + "directory": "@vates/fatfs", "type": "git", - "url": "https://github.com/vatesfr/xen-orchestra" + "url": "https://github.com/vatesfr/xen-orchestra.git" }, "keywords": [ "filesystem", @@ -20,13 +21,14 @@ ], "author": "Vates SAS", "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/vatesfr/xen-orchestra/issues" - }, - "homepage": "https://github.com/vatesfr/xen-orchestra", + "bugs": "https://github.com/vatesfr/xen-orchestra/issues", + "homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/@vates/fatfs", "dependencies": { "fifolock": "^1.0.0", "struct-fu": "^1.2.1", "xok": "^1.0.0" + }, + "engines": { + "node": ">=18" } }