From 05b7a0021af546485aeae8c8d4fc96a97dd7a04f Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 9 Aug 2018 16:08:31 +0000 Subject: [PATCH] Bug 21195: Ignore files used for SCSS build process koha_1 | # Failed test 'All directories should be mapped: .sass-lint.yml,.scss-lint.yml,gulpfile.js,package.json,yarn.lock' koha_1 | # at t/Makefile.t line 47. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart --- Makefile.PL | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.PL b/Makefile.PL index 0068424a9d..74f74f6fbd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -377,6 +377,11 @@ my $target_map = { # ignore files and directories created by the install itself './pm_to_blib' => 'NONE', './blib' => 'NONE', + '.sass-lint.yml' => 'NONE', + '.scss-lint.yml' => 'NONE', + 'gulpfile.js' => 'NONE', + 'package.json' => 'NONE', + 'yarn.lock' => 'NONE', }; =head1 CONFIGURATION OPTIONS -- 2.11.0