2023-07-26 22:31:52 -07:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-12-19 20:05:36 -08: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');
|