"main.dev.ts" and "main.prod.ts" have been deprecated.
Ionic 2のバージョンを上げたらこんなエラーが出るようになった。
ionic-app-scripts 0.0.47
build dev started ...
ionic-app-script task: "build"
Error: "main.dev.ts" and "main.prod.ts" have been deprecated. Please create a new file "main.ts" containing
the content of "main.dev.ts", and then delete the deprecated files. For more information, please see the
default Ionic project main.ts file here:
https://github.com/driftyco/ionic2-app-base/tree/master/src/app/main.ts
main.ts使えってことらしいので、main.tsを作ってみた。
cp ./app/main.dev.ts ./app/main.ts
これでエラーは出なくなった。