mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* replace `env.OXIDE` with global `__OXIDE__` This will allow us to replace the `__OXIDE__` at build time, and fully remove the branches from the final code so that there is not even any reference to `@tailwindcss/oxide` on the stable engine. * update changelog * use `env.ENGINE` in integration tests * drop oxide branching for the PostCSS plugin for now This is currently a redirect to the same file, so doesn't hurt. * Enable better dead-code elimination * Update CLI tests Fix indentation * Fix indentation --------- Co-authored-by: Jordan Pittman <jordan@cryptica.me>
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
#!/usr/bin/env node
|
|
|
|
if (__OXIDE__) {
|
|
module.exports = require('./oxide/cli')
|
|
} else {
|
|
module.exports = require('./cli/index')
|
|
}
|