Bill,
You may still be on the older version of our npm modules. When you run 'pac install latest', this upgrades your CLI version so that you are using the latest, but the version of npm module that you use is governed by the package.json file in your PCF projects.
One change that we announced with this update is that you should change the related devDependencies lines in the package.json file of your PCF projects.
From:
"devDependencies": {
"pcf-scripts": "~0",
"pcf-start": "~0"
}
To:
"devDependencies": {
"pcf-scripts": "^0",
"pcf-start": "^0"
}
Now, while in the directory of your project, you can run 'npm update' to get the latest npm modules. To verify, open up the node_modules directory, scan down to 'pcf-start' and open the package.json file in that module's directory. If you have the current version, you will see:
"_id": "pcf-start@0.2.59",
Regards,
cl.