mirror of
https://github.com/laoxong/nofx.git
synced 2026-06-04 09:58:22 +08:00
5aa50d35d7
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
23 lines
554 B
JavaScript
Executable File
23 lines
554 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
let mode = process.argv[2]
|
|
if (mode === '--info') {
|
|
process.stdout.write(require('../')().info() + '\n')
|
|
} else if (mode === '--version') {
|
|
process.stdout.write(
|
|
'autoprefixer ' + require('../package.json').version + '\n'
|
|
)
|
|
} else {
|
|
process.stdout.write(
|
|
'autoprefix\n' +
|
|
'\n' +
|
|
'Options:\n' +
|
|
' --info Show target browsers and used prefixes\n' +
|
|
' --version Show version number\n' +
|
|
' --help Show help\n' +
|
|
'\n' +
|
|
'Usage:\n' +
|
|
' autoprefixer --info\n'
|
|
)
|
|
}
|