- Configurable server URL (default: pedshub.com) - Android + iOS platforms initialized - Dark theme matching quiz app (#0f172a) - Status bar and navigation bar color matched - Auto-redirect on subsequent launches - App ID: com.pedshub.quiz, App Name: PedsHub Build: cd mobile && npx cap sync && npx cap open android Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
No EOL
849 B
JavaScript
31 lines
No EOL
849 B
JavaScript
import { assertRimrafOptions, } from './index.js';
|
|
const optArgT = (opt) => {
|
|
assertRimrafOptions(opt);
|
|
const { glob, ...options } = opt;
|
|
if (!glob) {
|
|
return options;
|
|
}
|
|
const globOpt = glob === true
|
|
? opt.signal
|
|
? { signal: opt.signal }
|
|
: {}
|
|
: opt.signal
|
|
? {
|
|
signal: opt.signal,
|
|
...glob,
|
|
}
|
|
: glob;
|
|
return {
|
|
...options,
|
|
glob: {
|
|
...globOpt,
|
|
// always get absolute paths from glob, to ensure
|
|
// that we are referencing the correct thing.
|
|
absolute: true,
|
|
withFileTypes: false,
|
|
},
|
|
};
|
|
};
|
|
export const optArg = (opt = {}) => optArgT(opt);
|
|
export const optArgSync = (opt = {}) => optArgT(opt);
|
|
//# sourceMappingURL=opt-arg.js.map
|