blob: 51d7cc11ed8b9e4acced5f27c1d33dffaee6de23 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env ruby
# frozen_string_literal: true
require_relative '../lib/tooling/mappings/view_to_js_mappings'
changes_file = ARGV.shift
matching_tests_paths = ARGV.shift
Tooling::Mappings::ViewToJsMappings.new(changes_file, matching_tests_paths).execute
|