Hitesh Kumar
Hitesh Kumar

Reputation: 3698

ionic: Starter app with -v1

I am getting started with Ionic. I want to use ionic 1. I am using following command to create ionic v1 app as explained here.

ionic start -v1 myapp blank

But it's creating ionic v2 app using angular 2. I don't know why it is doing so. I also tried commands below but no luck.

ionic -v1 start myapp blank

ionic start myapp -v1 blank

ionic start myapp blank -v1

It's not showing any error or warning either. Can anyone please help? Thanks.

Upvotes: 0

Views: 422

Answers (2)

f1lt3r
f1lt3r

Reputation: 2223

The current way of doing this is using the --type=ionic1 option:

ionic --version  # 3.8.1
ionic start test blank --type=ionic1

Upvotes: 0

Z.Meriem
Z.Meriem

Reputation: 11

You need to downgrade your ionic version. Then run "ionic start myproject blank" without --v

Upvotes: 1

Related Questions