angular-flash icon indicating copy to clipboard operation
angular-flash copied to clipboard

angular-mocks and route specified in depedencies

Open cthorner opened this issue 10 years ago • 1 comments

I'm guessing mocks can be removed and maybe route as well. Should be under devDependencies. This is breaking grunt-bower-install.

  "dependencies"   : {
    "angular"      : "~1",
    "angular-mocks": "~1",
    "angular-route": "~1"
  },

becomes

  "dependencies"   : {
    "angular"      : "~1"
},
"devDependencies" : {
    "angular-mocks": "~1",
    "angular-route": "~1"
  },

or(I hope the former works)

  "dependencies"   : {
    "angular"      : "~1"
    "angular-route": "~1"
},
"devDependencies" : {
    "angular-mocks": "~1",
  },

cthorner avatar Jun 22 '15 20:06 cthorner

+1

jonlil avatar Aug 03 '15 07:08 jonlil