lib/tasks/ruby2js_tasks.rake in ruby2js-4.1.7 vs lib/tasks/ruby2js_tasks.rake in ruby2js-4.2.0
- old
+ new
@@ -9,11 +9,11 @@
namespace :ruby2js do
namespace :install do
desc "Install Ruby2JS with LitElement support"
task :litelement do
- template 'install/litelement.rb'
+ template 'install/lit-webpacker.rb'
end
desc "Install Ruby2JS with Preact support"
task :preact do
template 'install/preact.rb'
@@ -32,9 +32,21 @@
end
desc "Install Ruby2JS with Stimulus Webpacker support"
task :webpacker => :"stimulus:install" do
template 'install/stimulus-webpacker.rb'
+ end
+ end
+
+ namespace :lit do
+ desc "Install Ruby2JS with Lit Rollup support"
+ task :rollup do
+ template 'install/lit-rollup.rb'
+ end
+
+ desc "Install Ruby2JS with Lit Webpacker support"
+ task :webpacker do
+ template 'install/lit-webpacker.rb'
end
end
end
end