mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
14 lines
339 B
JavaScript
14 lines
339 B
JavaScript
|
const Metalsmith = require('metalsmith');
|
||
|
const filter = require('metalsmith-filter');
|
||
|
|
||
|
const regex_sass = '**/*.sass';
|
||
|
const other_plugin = require('./plugins/03-read-other-variables');
|
||
|
|
||
|
Metalsmith(__dirname)
|
||
|
.source('../../sass')
|
||
|
.use(filter(regex_sass))
|
||
|
.use(other_plugin())
|
||
|
.build(function(err) {
|
||
|
if (err) throw err;
|
||
|
});
|