jrock2004
jrock2004

Reputation: 3501

Visual Studio 2015 bower broken

So I have Visual Studio 2015 RC1 Enterprise installed. In my web project under dependencies bower is showing an error complaining about a syntax error. There is no error that I can see in my file. It worked perfectly in older version of 2015 so not sure what is wrong.

{
    "dependencies": {
        "bootstrap": "3.0.0"
    },
    "name": "MyProject",
    "private", true
}

Any thoughts?

Upvotes: 1

Views: 292

Answers (1)

Juzzbott
Juzzbott

Reputation: 1789

You have an error in your syntax on the last line, where you have a comma instead of a colon.

Change "private", true to "private": true

Upvotes: 2

Related Questions