mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-03 20:27:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			207 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			207 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* eslint-env node */
 | 
						|
 | 
						|
'use strict';
 | 
						|
 | 
						|
const path = require('path');
 | 
						|
 | 
						|
module.exports = function eyeglassExports(/* eyeglass, sass */) {
 | 
						|
  return {
 | 
						|
    sassDir: path.join(__dirname, 'addon', 'styles')
 | 
						|
  };
 | 
						|
};
 |