Alex

Results 127 issues of Alex

**Description of the change** This PR allows ide rebuilds without involving the file system by directly sending module source code (instead of file path) and expecting that it will affect...

**Description of the change** This PR introduces a check while ide rebuilds and make processes so that if `codegenTargets` set is empty it doesn't touch the compiled output at all:...

## Description There is an inconsistency between compilation results of `purs compile` and `purs-ide` fast rebuild command. `purs compile` puts `// Generated by purs version 0.14.3` comment on top and...

type: bug

## Summary Currently, there exists a problem in dev workflow that if a module actually removed from the codebase it still resides in the compile output and is available as...

type: enhancement

Trying to pass multiple purs-args fails for me on windows: ``` spago build --purs-args "-p --json-erros" ``` Invalid option `--json-erros' Usage: purs.bin COMMAND The PureScript compiler and tools [error] Failed...

bug
windows

I get the following warning when doing `spago install some-package` > Failed to add dependencies. The `dependencies` field wasn't a List of Strings. Spago installs (downloads) the package but, but...

bug
feature
in progress

What do you think about the command for adding remote repo packages like: ``` spago add https://github.com/Unisay/purescript-facebook ``` spago could read remote `bower.json` (or `spago.dhall` if exsists) for the dependencies...

``` spago install package-name ``` Doesn't seem to build a newly downloaded package. So have to do after: ``` spago build [--deps-only] ``` Though it is not very convenient as...

There should be a way to know why a package/module was installed (downloaded) showing which packages depend on it. > We could add an argument to spago ls deps ,...

feature
UX

Seems commonjs modules are not supported? ```js module.exports.xxx = function () { return 1 } ``` or ```js exports.xxx = () => { ... } ``` Is there a reason...