You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2020. It is now read-only.
$ gulp
[12:05:33] Using gulpfile ~\Documents\Purescript\gulpfile.js
[12:05:33] Starting 'purescript'...
events.js:85
throw er; // Unhandled 'error' event
^
Error: spawn psc ENOENT
at exports._errnoException (util.js:746:11)
at Process.ChildProcess._handle.onexit (child_process.js:1046:32)
at child_process.js:1137:20
at process._tickCallback (node.js:355:11)
//gulpfile.jsvargulp=require('gulp');varpurescript=require('gulp-purescript');gulp.task('purescript',function(){returngulp.src('src/**/*.purs').pipe(purescript.psc({main:"Chapter2"})).//<-- if this line is commented the script workspipe(gulp.dest('build'));});gulp.task('default',['purescript']);
-- Chapter2.pursmoduleChapter2whereimportDebug.Trace
main = trace "Hello"
$ node -v
v0.12.1
$ npm -v
2.5.1
$ gulp -v
[12:05:49] CLI version 3.8.11
[12:05:49] Local version 3.8.11