For each module that contains a decorator (e.g. @computed) I get the following error:
error parsing file `[path/to/file]` failed to apply codeshift. Possible invalid JS file. Returning original file unchanged. error: This experimental syntax requires enabling one of the following parser plugin(s): 'decorators, decorators2' (48:2)
I traced the problem down to this issue -> facebook/jscodeshift#232
Seems like the parser passed to jscodeshift should be set to "babylon", which includes the decorators flag.
For each module that contains a decorator (e.g.
@computed) I get the following error:I traced the problem down to this issue -> facebook/jscodeshift#232
Seems like the parser passed to
jscodeshiftshould be set to "babylon", which includes thedecoratorsflag.