mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-17 02:48:31 -07:00
11 lines
436 B
JavaScript
11 lines
436 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const base = path.join(__dirname, '..', 'docs');
|
|
|
|
const supportDevices = require('./supported-devices');
|
|
const integratingWithHomeassistant = require('./integrating-with-homeassistant');
|
|
|
|
fs.writeFileSync(path.join(base, 'information', 'supported_devices.md'), supportDevices);
|
|
fs.writeFileSync(path.join(base, 'integration', 'home_assistant.md'), integratingWithHomeassistant);
|