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