- Add npm scripts for CSS/JS compilation (build:css, build:js, build) - Create PowerShell build automation script - Document development workflow in README - Add troubleshooting guide for build issues - Specify proper file structure and compilation process Supports Tailwind CSS v3.4.0 and esbuild bundling with source maps.
10 lines
388 B
JavaScript
10 lines
388 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.SyncProvider = exports.StreamProvider = exports.AsyncProvider = void 0;
|
|
const async_1 = require("./async");
|
|
exports.AsyncProvider = async_1.default;
|
|
const stream_1 = require("./stream");
|
|
exports.StreamProvider = stream_1.default;
|
|
const sync_1 = require("./sync");
|
|
exports.SyncProvider = sync_1.default;
|