mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-09 17:58:03 +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')
|
|
};
|
|
};
|