mirror of
https://git.proxmox.com/git/pve-eslint
synced 2025-08-16 08:18:09 +00:00

instead of concatenating the eslint module into our app.js, ship a 'pve-eslint' module that exports the built eslint module to do this, we have to leave the module type on 'umd' instead of changing to 'var' so that nodejs can properly import it. Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
8 lines
141 B
Makefile
Executable File
8 lines
141 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --with nodejs
|
|
|
|
execute_after_dh_fixperms:
|
|
chmod --recursive a+x -- debian/*/usr/share/nodejs/pve-eslint/bin/*
|