mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-25 10:01:30 -04:00
9 lines
239 B
JavaScript
Executable File
9 lines
239 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
if (process.version.match(/v(\d+)\./)[1] < 4) {
|
|
console.error('standard: Node v4 or greater is required. `standard` did not run.')
|
|
} else {
|
|
var opts = require('../options')
|
|
require('standard-engine').cli(opts)
|
|
}
|