open-vault/ui/scripts/codemods
Jordan Reimer d11b4995dd
LinkTo Transition Bug (#16983)
* removes on click modifier from LinkTo elements

* adds changelog

* reverts button changes and closes dropdown in next tick of runloop

* removes comment
2022-09-01 16:15:54 -06:00
..
dropdown-transform.js Tool Tip Styling Issue (#14064) 2022-02-15 10:43:37 -07:00
icon-transform.js Ember Upgrade to 3.24 (#13443) 2021-12-16 20:44:29 -07:00
linkto-with-on-modifier.js LinkTo Transition Bug (#16983) 2022-09-01 16:15:54 -06:00
no-quoteless-attributes.js Ember Upgrade to 3.24 (#13443) 2021-12-16 20:44:29 -07:00
README.md Ember Upgrade to 3.24 (#13443) 2021-12-16 20:44:29 -07:00
transform-deprecated-args.js updates LinkTo disabled attributes to args and fixes toolbar secret link disabled styling (#15106) 2022-04-21 07:44:06 -06:00

Running Codemods

The handlebars codemods use ember-template-recast and can be run with the following:

  • navigate to the UI directory of the Vault project
  • execute npx ember-template-recast "**/*.hbs" -t ./path/to/transform-file.js

This will run the transform on all .hbs files within the ui directory which covers the app and all addons. The terminal will output the number of files processed as well as the number of changed, unchanged, skipped and errored files. It's a good idea to validate the output to ensure that the intended transforms have taken place. If there are issues with some of the files, simply revert the changes via git, tweak the codemod and run again.

Example

npx ember-template-recast "**/*.hbs" -t ./scripts/codemods/no-quoteless-attributes.js