I need to replace a specific string inside a CoffeeScript file. The file contains the following values inside:
version : '1.3.3.1204.0'
buildVersion : '1.3.3.1204.4'
Using shell script, I want to replace the values within quotes, nothing else. Notice there can be X amount of whitespaces between the name and the :
Desired output:
version : '2.0.0.0101.0'
buildVersion : '2.0.0.0101.1'