Hi, Jake,
Thanks for the link to the nightly. That resolves the issues I reported.
Thanks also for the clarification on the Makefile. I didn't
specifically mention it, but I'm using scion in the client browser, so
I'm happy to continue pursuing this with you if you have the time.
I tweaked lib/browser/build/stitch.js as follows:
diff --git a/lib/browser/build/stitch.js b/lib/browser/build/stitch.js
index 79f23ec..85c5d1e 100644
--- a/lib/browser/build/stitch.js
+++ b/lib/browser/build/stitch.js
@@ -7,6 +7,7 @@ var pkg = stitch.createPackage({
});
pkg.compile(function (err, source){
+ if (err) throw err;
fs.writeFile('scion.js', source, function (err) {
if (err) throw err;
That revealed the following:
lib\browser\build\stitch.js:10
if (err) throw err;
^
Error: lib\browser\SCXML.js isn't in the require path
at node_modules\stitch\lib\stitch.js:181:27
Haven't dug any deeper.
Matt