Detects when user changes same config setting 3+ times within 24 hours. Shows non-intrusive prompt offering help with guided calibration flow. Guided calibration features: - Test for false positives (walk around room) - Test for missed motion (sit still) - Suggest optimal value based on diurnal baseline SNR and link health - Apply suggested value button Files: - dashboard/js/proactive.js: Complete implementation with localStorage tracking Acceptance: - Help prompt fires after 3+ changes in 24h - Calibration flow tests both directions - Suggests value based on system data - Apply button works
42 lines
912 B
JavaScript
Executable file
42 lines
912 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
let { readFileSync } = require('fs')
|
|
let { join } = require('path')
|
|
|
|
require('./check-npm-version')
|
|
let updateDb = require('./')
|
|
|
|
const ROOT = __dirname
|
|
|
|
function getPackage() {
|
|
return JSON.parse(readFileSync(join(ROOT, 'package.json')))
|
|
}
|
|
|
|
let args = process.argv.slice(2)
|
|
|
|
let USAGE = 'Usage:\n npx update-browserslist-db\n'
|
|
|
|
function isArg(arg) {
|
|
return args.some(i => i === arg)
|
|
}
|
|
|
|
function error(msg) {
|
|
process.stderr.write('update-browserslist-db: ' + msg + '\n')
|
|
process.exit(1)
|
|
}
|
|
|
|
if (isArg('--help') || isArg('-h')) {
|
|
process.stdout.write(getPackage().description + '.\n\n' + USAGE + '\n')
|
|
} else if (isArg('--version') || isArg('-v')) {
|
|
process.stdout.write('browserslist-lint ' + getPackage().version + '\n')
|
|
} else {
|
|
try {
|
|
updateDb()
|
|
} catch (e) {
|
|
if (e.name === 'BrowserslistUpdateError') {
|
|
error(e.message)
|
|
} else {
|
|
throw e
|
|
}
|
|
}
|
|
}
|