Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 行
508 B
JavaScript
17 行
508 B
JavaScript
'use strict'
|
|
|
|
const u = require('universalify').fromPromise
|
|
const jsonFile = require('./jsonfile')
|
|
|
|
jsonFile.outputJson = u(require('./output-json'))
|
|
jsonFile.outputJsonSync = require('./output-json-sync')
|
|
// aliases
|
|
jsonFile.outputJSON = jsonFile.outputJson
|
|
jsonFile.outputJSONSync = jsonFile.outputJsonSync
|
|
jsonFile.writeJSON = jsonFile.writeJson
|
|
jsonFile.writeJSONSync = jsonFile.writeJsonSync
|
|
jsonFile.readJSON = jsonFile.readJson
|
|
jsonFile.readJSONSync = jsonFile.readJsonSync
|
|
|
|
module.exports = jsonFile
|