{"id":27471,"library":"ts-mini-transpiler-css","title":"ts-mini-transpiler-css","description":"A CSS transpiler plugin for ts-mini, currently at version 0.0.2. This package is part of the ts-mini ecosystem and provides CSS processing capabilities, likely converting or transforming CSS within ts-mini projects. It is in early development (WIP) with no stable release cadence established. Differentiators: tight integration with ts-mini, but limited documentation and usage outside that ecosystem.","status":"active","version":"0.0.2","language":"javascript","source_language":"en","source_url":"https://github.com/DanielMazurkiewicz/ts-mini-transpiler-css","tags":["javascript","ts-mini","css","transpiler","tss"],"install":[{"cmd":"npm install ts-mini-transpiler-css","lang":"bash","label":"npm"},{"cmd":"yarn add ts-mini-transpiler-css","lang":"bash","label":"yarn"},{"cmd":"pnpm add ts-mini-transpiler-css","lang":"bash","label":"pnpm"}],"dependencies":[{"reason":"Core dependency; this plugin extends ts-mini's transpilation pipeline.","package":"ts-mini","optional":false}],"imports":[{"note":"The package exports a default function; named imports will not work.","wrong":"import { tsMiniCss } from 'ts-mini-transpiler-css'","symbol":"default","correct":"import tsMiniCss from 'ts-mini-transpiler-css'"},{"note":"Type-only export; requires TypeScript for proper use.","wrong":"const CSSTranspiler = require('ts-mini-transpiler-css').CSSTranspiler","symbol":"CSSTranspiler","correct":"import { CSSTranspiler } from 'ts-mini-transpiler-css'"},{"note":"version is not exported from the main entry; import directly from package.json.","wrong":"import pkg from 'ts-mini-transpiler-css/package'","symbol":"version","correct":"import { version } from 'ts-mini-transpiler-css/package.json'"}],"quickstart":{"code":"import tsMiniCss from 'ts-mini-transpiler-css';\nimport { transpile } from 'ts-mini';\n\nconst cssCode = '.class { color: red; }';\nconst result = tsMiniCss(cssCode);\nconsole.log(result); // Transpiled CSS output\n\ntranspile({ code: cssCode, transforms: [tsMiniCss] });","lang":"typescript","description":"Shows importing ts-mini-transpiler-css and using it standalone or within ts-mini's transpile function."},"warnings":[{"fix":"Pin to exact version and monitor GitHub repository for changes.","message":"Package is early WIP; API may change without notice.","severity":"breaking","affected_versions":"0.x"},{"fix":"Install ts-mini as a dependency: npm install ts-mini.","message":"Requires ts-mini to be installed; standalone use may not be supported.","severity":"gotcha","affected_versions":"*"},{"fix":"","message":"No known deprecations yet.","severity":"deprecated","affected_versions":""}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Run npm install ts-mini-transpiler-css","cause":"Package not installed or not in node_modules.","error":"Cannot find module 'ts-mini-transpiler-css'"},{"fix":"Use import tsMiniCss from 'ts-mini-transpiler-css'","cause":"Incorrect import: used named import instead of default.","error":"tsMiniCss is not a function"},{"fix":"Ensure tsMiniCss is called correctly and returns a promise/result.","cause":"Trying to use output property before transpilation completes.","error":"TypeError: Cannot read properties of undefined (reading 'css')"}],"ecosystem":"npm","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}