Traceur 0.80 had a breaking change in the path to modules. Previously there was an implicit .js extension added but this must now be explicit.
		
			
				
	
	
		
			6 lines
		
	
	
		
			233 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			233 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var traceur = require('traceur/src/node/traceur.js');
 | |
| 
 | |
| module.exports = function ParseTreeVisitor() {
 | |
|   console.log(System.map.traceur);
 | |
|   return System.get(System.map.traceur + '/src/syntax/ParseTreeVisitor.js').ParseTreeVisitor;
 | |
| }; |