basebrick-bricklayer 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -244,7 +244,7 @@ export async function buildSite(options = {}) {
|
|
|
244
244
|
console.log('Building Tailwind CSS...');
|
|
245
245
|
try {
|
|
246
246
|
const tailwindArgs = isProd ? '--minify' : '';
|
|
247
|
-
execSync(`npx
|
|
247
|
+
execSync(`npx tailwindcss -i "${config.css.input}" -o "${config.css.output}" ${tailwindArgs}`, { stdio: 'inherit' });
|
|
248
248
|
console.log('Tailwind CSS built successfully!');
|
|
249
249
|
} catch (error) {
|
|
250
250
|
console.error('Failed to build Tailwind CSS:', error);
|