Upgrade nodejs cookbook from 7.3 to 11.0

This commit is contained in:
2026-07-10 11:19:29 +02:00
parent 86f7b68726
commit bd193567ca
46 changed files with 1002 additions and 890 deletions
+16
View File
@@ -0,0 +1,16 @@
# frozen_string_literal: true
name 'nodejs'
default_source :supermarket
run_list 'recipe[test::default]'
cookbook 'nodejs', path: '.'
cookbook 'test', path: './test/cookbooks/test'
Dir.children('./test/cookbooks/test/recipes').grep(/\.rb\z/).sort.each do |recipe|
recipe_name = File.basename(recipe, '.rb')
named_run_list recipe_name.to_sym, "recipe[test::#{recipe_name}]"
end