mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
const fs = require("fs");
|
|
const path = require("path");
|
|
const sass = require("sass");
|
|
const utils = require("../utils");
|
|
|
|
const DART_BASE_PATH = "test/dart-sass/build/";
|
|
|
|
fs.mkdir(DART_BASE_PATH, { recursive: true }, (err) => {
|
|
if (err) throw err;
|
|
});
|
|
|
|
const exportDartCSS = (filepath, options) => {
|
|
utils.exportCSS(sass, fs, DART_BASE_PATH, filepath, options);
|
|
};
|
|
|
|
// Full import
|
|
|
|
exportDartCSS("bulma", {
|
|
file: "./bulma.scss",
|
|
});
|
|
|
|
exportDartCSS("bulma-rtl", {
|
|
file: "./bulma-rtl.scss",
|
|
});
|
|
|
|
// Custom import
|
|
|
|
fs.mkdir(`${DART_BASE_PATH}custom`, { recursive: true }, (err) => {
|
|
if (err) throw err;
|
|
});
|
|
|
|
utils.exportCSS(sass, fs, DART_BASE_PATH, "custom/navbar", {
|
|
data: '@use "./sass/components/navbar.scss" with ( $scheme-main: red );',
|
|
});
|
|
|
|
// Single imports
|
|
|
|
const BULMA_IMPORT_PATH = `./sass/`;
|
|
|
|
utils.SOURCES.forEach((source) => {
|
|
const parsed = path.parse(source);
|
|
|
|
fs.mkdir(`${DART_BASE_PATH}${parsed.dir}`, { recursive: true }, (err) => {
|
|
if (err) throw err;
|
|
});
|
|
|
|
exportDartCSS(`${parsed.dir}/${parsed.name}`, {
|
|
data: `@use "${BULMA_IMPORT_PATH}${source}";`,
|
|
});
|
|
});
|