UNPKG

@tiny-css/compiler

Version:

The compiler for compiling & reducing the bundle size of tiny-css

183 lines (182 loc) 8.85 kB
#!/usr/bin/env node "use strict"; /** * @author KR Tirtho * Flow: * input.html--------->defined classnames----------->filter tiny-css classnames---------> * | * |---------------------------grab css objects from stylesheet.css relatively<----------| * | * |------>check output.css to not write same style twice------->write to output.css */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __generator = (this && this.__generator) || function (thisArg, body) { var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function (v) { return step([n, v]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while (_) try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [op[0] & 2, t.value]; switch (op[0]) { case 0: case 1: t = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); var fs = __importStar(require("fs")); var path_1 = require("path"); var css_1 = __importDefault(require("css")); var yargs_1 = __importDefault(require("yargs")); var chalk_1 = __importDefault(require("chalk")); var getCssObjects_1 = require("./src/getCssObjects"); var getClassnames_1 = require("./src/getClassnames"); var filterWithClassnames_1 = require("./src/filterWithClassnames"); var buildCSSClass_1 = require("./src/buildCSSClass"); var ASTTypes_1 = require("./src/utils/ASTTypes"); var argv = yargs_1.default .command("$0", "HTML File Glob Pattern", { input: { alias: "i", description: "CSS Input file which will be used to retrieve style objects. This can be a fs path or a cdn link", demandOption: true, }, "cdn-version": { alias: "c", description: "The version of the css input file. Important if `--disable-cache` option is not enabled & files are cached. This is used to determine the cache file location. Not required if using fs path", default: "0.0.1", defaultDescription: "0.0.1", }, output: { alias: "o", description: "CSS Output file", default: path_1.join(process.cwd(), "tiny.output.css"), defaultDescription: "{cwd}/tiny.output.css", }, debug: { type: "boolean", alias: "d", description: "Outputs verbose information about the currently running process", default: false, defaultDescription: "false", }, cwd: { description: "Custom current working directory", default: process.cwd(), defaultDescription: "process.cwd()", }, ignore: { type: "array", description: "An array glob pattern to ignore the path for file searching", default: ["node_modules"], defaultDescription: "./node_modules/**/*", }, "disable-cache": { boolean: true, description: "Disable caching stylesheets", default: false, defaultDescription: "false", }, }) .help() .alias("help", "h").argv; var version = JSON.parse(fs.readFileSync(path_1.join(__dirname, "..", "package.json"), "utf-8")).version; var tinyCssCredits = "/*!\n * CSS Generated using @tiny-css/compiler@" + version + "\n * @author KR.Tirtho\n * \u00A9Copyright 2020 KR.Tirtho\n * Licensed under MIT (https://github.com/tiny-css/compiler/blob/master/LICENSE)\n */\n\n"; var cwd = argv.cwd || process.cwd(); var config = { cwd: cwd, ignore: argv.ignore, debug: argv.debug, dot: true, }; getClassnames_1.getClassnames(argv._[0], config) .then(function (classnames) { return __awaiter(void 0, void 0, void 0, function () { var providedClassnames, filteredClassnames, cssObj, cssStr, error_1; return __generator(this, function (_a) { switch (_a.label) { case 0: _a.trys.push([0, 3, , 4]); if (!classnames) { console.warn(chalk_1.default.yellowBright("⚠ No classnames defined in any HTML files")); process.exit(0); } return [4 /*yield*/, buildCSSClass_1.buildCSSClass(argv.input, { disabledCache: argv["disable-cache"], version: argv["cdn-version"] })]; case 1: providedClassnames = _a.sent(); filteredClassnames = filterWithClassnames_1.filterWithClassnames(classnames, providedClassnames.classnames); cssObj = getCssObjects_1.getCssObjects(providedClassnames.stylesheetObj, filteredClassnames); if (!cssObj) { console.error(chalk_1.default.redBright("\u274C No CSS Style Declaration found relative to " + argv._[0] + " in provided " + argv.input)); process.exit(0); } cssStr = css_1.default.stringify({ type: ASTTypes_1.ASTTypes.stylesheet, stylesheet: { rules: cssObj, parsingErrors: [], }, }); return [4 /*yield*/, fs.promises.writeFile(argv.output, "" + tinyCssCredits + cssStr, { encoding: "utf-8", })]; case 2: _a.sent(); console.log(chalk_1.default.greenBright("\u2714 Writing declaration to " + argv.output + " completed")); return [3 /*break*/, 4]; case 3: error_1 = _a.sent(); console.error(chalk_1.default.redBright("⁉ Something went wrong")); console.error(error_1); return [3 /*break*/, 4]; case 4: return [2 /*return*/]; } }); }); }) .catch(function (error) { console.error(chalk_1.default.redBright("⁉ Something went wrong")); console.error(error); });