Thanks Bryon. I haven't tried it on windows. If you are
comfortable with git, you can actually fix these problems here: https://github.com/bitovi/steal/blob/master/docs/stealjs.md
A few questions:
What do you mean by "node.js
command line"
? Do you mean "node" was
added to your path? It should be.
Thanks for the other grunt fixes.
I will get them in.
The:
C:\Users\bchan\Projects\newstealtest\t
raceur\bin\traceur-runtime.js
Error is especially weird. That
lookup happens here:
traceurPath
=
require
.
resolve
(
'traceur'
),
- tries to find where traceur is in node modules.
var
traceurRuntime
=
fs
.
readFileSync
(
path
.
join
(
baseTraceur
,
"traceur/bin/traceur-runtime.js"
)
);
- tries to find the final location.
Could you do me a huge favor and let me know the values of
traceurPath, lastTraceur, and baseTraceur in your environment.
You can do this by putting a:
console.log(traceurPath,
lastTraceur, baseTraceur)
in that file which should be in
node_modules/steal-tools/lib/bundle/add_traceur_runtime.js. And
rerunning grunt. Thanks!