bump versions

pull/94/head
undefined 4 years ago
parent f2f5e808c4
commit aa6f3cc1d8

@ -14,7 +14,7 @@ function getWorkspaces() {
});
}
function spawnSync(command: string, silent?: boolean) {
function spawnSync(command, silent) {
if (!silent) console.log(`$ ${command}`);
const args = command.split(/\s+/);
const result = spawn.sync(args[0], [...args.slice(1), '--color'], { cwd, encoding: 'utf8' });
@ -26,7 +26,7 @@ function spawnSync(command: string, silent?: boolean) {
}
}
function spawnAsync(command: string) {
function spawnAsync(command) {
const args = command.split(/\s+/);
const child = spawn(args[0], args.slice(1), { stdio: 'inherit' });
return new Promise((resolve, reject) => {

@ -28,7 +28,7 @@
"@shelf/jest-mongodb": "^1.2.3",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/node": "^14.14.41",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
@ -43,7 +43,7 @@
"latest-version": "^5.1.0",
"ora": "^5.4.0",
"semver": "^7.3.5",
"ts-jest": "^26.5.4",
"ts-jest": "^26.5.5",
"typescript": "4.2.4",
"yargs": "^16.2.0"
}

@ -1,12 +1,12 @@
{
"name": "@hydrooj/hydrojudge",
"bin": "bin/hydrojudge.js",
"version": "2.5.1",
"version": "2.5.2",
"main": "package.json",
"author": "undefined <i@undefined.moe>",
"repository": "https://github.com/hydro-dev/Hydro.git",
"dependencies": {
"@hydrooj/utils": "^1.0.0",
"@hydrooj/utils": "^1.0.4",
"adm-zip": "^0.5.5",
"axios": "^0.21.1",
"bson": "^4.3.0",

@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "2.22.4",
"version": "2.22.5",
"bin": "bin/hydrooj.js",
"main": "dist/loader.js",
"typings": "dist/loader.d.ts",
@ -11,7 +11,7 @@
"node": ">=14"
},
"dependencies": {
"@hydrooj/utils": "^1.0.3",
"@hydrooj/utils": "^1.0.4",
"adm-zip": "^0.5.5",
"ansi_up": "^5.0.1",
"cookies": "^0.8.0",

@ -1,6 +1,6 @@
{
"name": "@hydrooj/ui-default",
"version": "4.5.16",
"version": "4.5.17",
"author": "undefined <i@undefined.moe>",
"license": "AGPL-3.0",
"main": "hydro.js",
@ -82,7 +82,7 @@
"redux-thunk": "^2.2.0",
"rupture": "^0.7.1",
"slideout": "^1.0.1",
"snowpack": "^3.2.2",
"snowpack": "^3.3.2",
"sockjs-client": "^1.5.1",
"speed-measure-webpack-plugin": "^1.5.0",
"sticky-kit": "^1.1.3",
@ -107,7 +107,7 @@
"js-yaml": "^4.0.0",
"katex": "^0.13.2",
"lodash": "^4.17.21",
"markdown-it": "^12.0.4",
"markdown-it": "^12.0.6",
"markdown-it-anchor": "^7.1.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-imsize": "^2.0.1",

@ -1,6 +1,6 @@
{
"name": "@hydrooj/utils",
"version": "1.0.3",
"version": "1.0.4",
"description": "hydrooj utils",
"main": "package.json",
"repository": "https://github.com/hydro-dev/Hydro.git",

Loading…
Cancel
Save