Get-ChildItem -Recurse -Filter "*" -Include "*.coffee" | Select -propert FullName
This returns a list of all coffee script files in my project.
How can I transform this into a single list where the .coffee
part is converted to .js
and .js.map
?
Example pseudocode output:
[ something.coffee, somethingelse.coffee ]
[ something.js, something.js.map, somethingelse.js, somethingelse.js.map]