Skip to content

Commit

Permalink
0.0.24
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Jul 22, 2024
1 parent 1dda598 commit bbc8a3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/perception-app",
"version": "0.0.23",
"version": "0.0.24",
"description": "Your second memory.",
"homepage": "https://deep.foundation/",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/perception-app",
"version": "0.0.23",
"version": "0.0.24",
"description": "",
"license": "Unlicense",
"main": "./bin/server.js",
Expand All @@ -25,7 +25,7 @@
"export": "(cross-env NEXT_PUBLIC_EXPORT=1 NEXT_PUBLIC_I18N_DISABLE=1 next build)",
"build": "rimraf app && next build",
"start": "next start",
"dev": "(cd ./perception-imports; npm run package:app:sync); NEXT_PUBLIC_GRAPHQL_URL=https://deeplinks.deep.foundation/gql next dev",
"dev": "(cd ./perception-imports; npm run app:sync); NEXT_PUBLIC_GRAPHQL_URL=https://deeplinks.deep.foundation/gql next dev",
"run-ios": "npx cap run ios",
"open-ios": "npx cap open ios",
"build-ios": "npm version prerelease --no-git-tag-version --no-commit-hook && rimraf app && NEXT_PUBLIC_BUILD=\"ios\" npm run export && npx cap sync ios",
Expand Down
2 changes: 1 addition & 1 deletion sync-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ 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.version = nextPckg.version;
fs.writeFileSync(path.join(__dirname, 'electron', 'package.json'), JSON.stringify(electronPckg));
fs.writeFileSync(path.join(__dirname, 'electron', 'package.json'), JSON.stringify(electronPckg, null, 2));

0 comments on commit bbc8a3c

Please sign in to comment.