- 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
293 B
JavaScript
10 lines
293 B
JavaScript
'use strict';
|
|
|
|
module.exports = (
|
|
// node 12+
|
|
process.allowedNodeEnvironmentFlags && process.allowedNodeEnvironmentFlags.has('--preserve-symlinks')
|
|
) || (
|
|
// node v6.2 - v11
|
|
String(module.constructor._findPath).indexOf('preserveSymlinks') >= 0 // eslint-disable-line no-underscore-dangle
|
|
);
|