我刚开始在purescript by example之后学习purescript,但我被困在Chapter2 using grunt project templates的末尾。 我按照说明操作,但是当我运行grunt命令时,我收到此错误:
/Users/chad/playground/purescript/tests/tmp/node_modules/Control.Monad.Eff.Random/index.js:8
return Math.random();
^
TypeError: undefined is not a function
at Object.random (/Users/chad/playground/purescript/tests/tmp/node_modules/Control.Monad.Eff.Random/index.js:8:17)
at __do (/Users/chad/playground/purescript/tests/tmp/node_modules/Test.QuickCheck/index.js:177:52)
at Object.__do (/Users/chad/playground/purescript/tests/tmp/node_modules/Main/index.js:19:201)
at Object.<anonymous> (/Users/chad/playground/purescript/tests/tmp/index.js:1:79)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
Warning: -> error 1 /Users/chad/playground/purescript/tests/tmp/index.js (125ms) Use --force to continue.
Aborted due to warnings.
我通过挖掘代码发现,模块Math被导入/output/Control.Monad.Eff.Random/index.js
var Math = require("Math");
function random() {
return Math.random();
}
;
如果我删除导入,让Math为原生并且只使用index.js
运行主node index.js
,一切正常。
我想知道在purescript中是否可以做些什么来解决这个问题,或者我是否做错了。
答案 0 :(得分:5)
与purescript-random
一起使用时,psc-make
模块在最新版本中被破坏。它将在下一版本0.6.7中由编译器补丁修复,希望本周。
作为一种变通方法,您应该能够在purescript-random
文件或命令行中指定先前版本的bower.json
:
bower install purescript-random#0.1.1