Bump version

This commit is contained in:
Charles Bochet 2023-12-21 23:52:45 +01:00
parent 46ab88cb9c
commit 68a6250757
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "twenty-front",
"version": "0.2.1",
"version": "0.2.2",
"private": true,
"type": "module",
"scripts": {
@ -182,4 +182,4 @@
"msw": {
"workerDirectory": "public"
}
}
}

View File

@ -1,6 +1,6 @@
{
"name": "twenty-server",
"version": "0.2.1",
"version": "0.2.2",
"description": "",
"author": "",
"private": true,
@ -154,4 +154,4 @@
"npm": "please-use-yarn",
"yarn": "^4.0.2"
}
}
}

View File

@ -12,8 +12,8 @@ if (!semver.valid(version)) {
process.exit(1);
}
const FrontPackageJson = path.join(__dirname, "../../front/package.json");
const ServerPackageJson = path.join(__dirname, "../../server/package.json");
const FrontPackageJson = path.join(__dirname, "../twenty-front/package.json");
const ServerPackageJson = path.join(__dirname, "../twenty-server/package.json");
// Update package.json
for (let file of [FrontPackageJson, ServerPackageJson]) {