stailwc 0.7.1

An experimental transpiler to bring tailwind macros to SWC rocket
Documentation
1
2
3
4
5
6
7
8
9
const snaps = require("./snapshots/snapshots");
const fs = require("fs");

const RE = /.+ (.+):.+\d/;

for ([k, v] of Object.entries(snaps)) {
  const fileName = RE.exec(k)[1];
  fs.writeFileSync(`snapshots/${fileName}`, v);
}