purescript / psc-package

A package manager for PureScript based on package sets
https://psc-package.readthedocs.io
Other
229 stars 45 forks source link

Creating a custom set with purescript-aff not working #112

Closed naglalakk closed 6 years ago

naglalakk commented 6 years ago

Steps to reproduce

I get Package aff does not exist in package set

But it is?

  "aff": {
    "dependencies": [
      "datetime",
      "effect",
      "exceptions",
      "functions",
      "parallel",
      "transformers",
      "unsafe-coerce"
    ],
    "repo": "git://github.com/slamdata/purescript-aff.git",
    "version": "v5.0.0"
  },
justinwoo commented 6 years ago

The current master package set only contains the core libraries and will have more libraries added over time.

In you project (not your package set) repo, you should not have this problem if you install the package set by setting psc-package.json.

justinwoo commented 6 years ago

You might want to ask someone in #purescript-beginners on slack or on discourse. The issues here should be for bugs in psc-package.

naglalakk commented 6 years ago

"In you project (not your package set) repo, you should not have this problem if you install the package set by setting psc-package.json"

I'm not sure I follow. Do I need to do anything after I add aff to my package set repo?. That is to say in my project repo do I need to do anything other than change the set variable in psc-package.json? Everytime i try to do something else it tells me that aff does not exist

naglalakk commented 6 years ago

Ok I will move my discussion to slack or discourse. But in my view the documentation is a bug that needs to be discussed and verified