mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-01 04:44:16 +01:00
21 lines
813 B
JavaScript
21 lines
813 B
JavaScript
|
#!/usr/bin/env node
|
||
|
|
||
|
import shelljs from 'shelljs'
|
||
|
import { execSync } from 'node:child_process'
|
||
|
|
||
|
const VERSION = process.argv[2]
|
||
|
// https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string
|
||
|
const semver =
|
||
|
/^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/gm
|
||
|
if (!semver.test(VERSION)) {
|
||
|
console.error('Invalid version number')
|
||
|
process.exit(1)
|
||
|
}
|
||
|
|
||
|
// CLI
|
||
|
shelljs.sed('-i', /"version": ".*"/, `"version": "${process.argv[2]}"`, './packages/cli/package.json')
|
||
|
|
||
|
// Backend
|
||
|
shelljs.sed('-i', /^version = ".*"$/m, `version = "${process.argv[2]}"`, './packages/backend/Cargo.toml')
|
||
|
execSync('cargo check -p cryptgeon', { cwd: './packages/backend' })
|