1

I get this error below when I run "meteor add my-custom-package" command, and I am not sure what the problem is.


=> Errors while parsing arguments:

While adding package my-custom-package: error: no such package

sflow
  • 655
  • 2
  • 8
  • 18

1 Answers1

0

I experienced the same problem while trying to create a private package. I was following guides online and creating all the file manually, a better way is running:

meteor create --package example

and then adding the package will work: meteor add example

Sean Bannister
  • 3,105
  • 4
  • 31
  • 43