replace new npm patch-package call by patching npm modules in napalm
This commit is contained in:
parent
10d3d03da1
commit
7044f63788
|
@ -73,6 +73,14 @@
|
|||
inherit nodejs;
|
||||
nativeBuildInputs = [ pkgs.imagemagick ];
|
||||
npmCommands = [ "npm install" "npm run build" ];
|
||||
# Keep this in sync with the content of ./patches/
|
||||
customPatchPackages = {
|
||||
vue-i18n-extract."2.0.7" = pkgs: prev: {
|
||||
preConfigure = ''
|
||||
${pkgs.git}/bin/git apply -p3 ${./patches/vue-i18n-extract+2.0.7.patch}
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
default = self.packages."${system}".mobilizon;
|
||||
|
|
|
@ -15,8 +15,7 @@
|
|||
"story:preview": "histoire preview",
|
||||
"test": "vitest",
|
||||
"coverage": "vitest run --coverage",
|
||||
"pre-commit": "lint-staged",
|
||||
"postinstall": "patch-package"
|
||||
"pre-commit": "lint-staged"
|
||||
},
|
||||
"lint-staged": {
|
||||
"**/*.{js,ts,vue}": [
|
||||
|
|
Loading…
Reference in a new issue