New mobile/ directory with Capacitor project: - Configurable server URL launcher (default: app.pedshub.com) - Android: foreground service + wake lock for background recording (AudioRecordingService preserved from existing TWA) - iOS: background audio mode + microphone permission - App ID: com.pedshub.scribe - Both platforms initialized and synced Existing android/ TWA project untouched — this is a separate project. Build: cd mobile && npx cap open android (or ios)
24 lines
725 B
JavaScript
24 lines
725 B
JavaScript
'use strict'
|
|
module.exports = Base => class extends Base {
|
|
warn (code, message, data = {}) {
|
|
if (this.file) {
|
|
data.file = this.file
|
|
}
|
|
if (this.cwd) {
|
|
data.cwd = this.cwd
|
|
}
|
|
data.code = message instanceof Error && message.code || code
|
|
data.tarCode = code
|
|
if (!this.strict && data.recoverable !== false) {
|
|
if (message instanceof Error) {
|
|
data = Object.assign(message, data)
|
|
message = message.message
|
|
}
|
|
this.emit('warn', data.tarCode, message, data)
|
|
} else if (message instanceof Error) {
|
|
this.emit('error', Object.assign(message, data))
|
|
} else {
|
|
this.emit('error', Object.assign(new Error(`${code}: ${message}`), data))
|
|
}
|
|
}
|
|
}
|