2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-12-20 04:05:36 +00:00
|
|
|
const fs = require('fs');
|
|
|
|
const meta = require('../package.json');
|
|
|
|
|
|
|
|
fs.mkdirSync(__dirname + '/../built', { recursive: true });
|
|
|
|
fs.writeFileSync(__dirname + '/../built/meta.json', JSON.stringify({ version: meta.version }), 'utf-8');
|