Skip to content

Commit

Permalink
sync version fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Jul 22, 2024
1 parent 31189d9 commit 9d1ddc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/perception-app",
"version": "0.0.21",
"version": "0.0.22",
"description": "",
"license": "Unlicense",
"main": "./bin/server.js",
Expand Down
2 changes: 1 addition & 1 deletion sync-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ const fs = require('fs');
const path = require('path');
const nextPckg = JSON.parse(fs.readFileSync(path.join(__dirname, 'package.json'), 'utf8'));
const electronPckg = JSON.parse(fs.readFileSync(path.join(__dirname, 'electron', 'package.json'), 'utf8'));
electronPckg.id = nextPckg.id;
electronPckg.version = nextPckg.version;
fs.writeFileSync(path.join(__dirname, 'electron', 'package.json'), JSON.stringify(electronPckg));

0 comments on commit 9d1ddc4

Please sign in to comment.