mirror of
https://github.com/nostalgic-css/NES.css.git
synced 2025-09-25 21:39:37 +02:00
I've moved the SCSS functions file into the `scripts` directory where I think it makes a bit more sense. I've also abstracted most of the functionality from it so I can also use it in `semantic-release`'s preparation step.
8 lines
230 B
JavaScript
8 lines
230 B
JavaScript
const { types } = require('node-sass'); /* eslint-disable-line import/no-extraneous-dependencies */
|
|
|
|
const getBuildData = require('./getBuildData');
|
|
|
|
module.exports = {
|
|
'build-data()': () => types.String(getBuildData(true)),
|
|
};
|