Skip to content

Commit

Permalink
Add bin/generate_ts script
Browse files Browse the repository at this point in the history
  • Loading branch information
azimux committed Dec 22, 2023
1 parent b8238c7 commit 51356cd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions bin/generate_ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env ruby

ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)

require "bundler/setup"

require "pry"
require "pry-byebug"

require "foobara/typescript_remote_command_generator"

Foobara::RemoteGenerator::WriteTypescriptToDisk.run!(
manifest_url: ARGV[0],
output_directory: ARGV[1]
)

0 comments on commit 51356cd

Please sign in to comment.