snapshot before rebranding

This commit is contained in:
2025-12-14 07:37:21 +03:00
parent 5520d491a5
commit 09735eb97a
1752 changed files with 58116 additions and 15986 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env node
import fs from 'fs';
import toml from 'toml';
function main () {
const pkgJson = JSON.parse(fs.readFileSync('package.json', 'utf-8'));
const tomlData = toml.parse(fs.readFileSync('Cargo.toml', 'utf-8'));
pkgJson.version = tomlData.package.version;
fs.writeFileSync('package.json', JSON.stringify(pkgJson, null, 2));
}
main();