Stricter System.register
detection
This patch release fixes #1500:
require("fs.js");
FileSystem.registerFileSystem();
Steal.js would not detect this module as CommonJS because line 2 would be matched by the System.register
extension regular expression.
Thanks @kayahr for reporting the issue.