Rename scripts folder

This commit is contained in:
Jeremy Thomas
2019-05-18 16:11:16 +01:00
parent 9f82b255da
commit 02dce47230
8 changed files with 0 additions and 0 deletions

13
docs/_scripts/03-other.js Normal file
View File

@@ -0,0 +1,13 @@
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;
});