Skip to content

Commit bbc8a3c

Browse files
committed
0.0.24
1 parent 1dda598 commit bbc8a3c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deep-foundation/perception-app",
3-
"version": "0.0.23",
3+
"version": "0.0.24",
44
"description": "Your second memory.",
55
"homepage": "https://deep.foundation/",
66
"author": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deep-foundation/perception-app",
3-
"version": "0.0.23",
3+
"version": "0.0.24",
44
"description": "",
55
"license": "Unlicense",
66
"main": "./bin/server.js",
@@ -25,7 +25,7 @@
2525
"export": "(cross-env NEXT_PUBLIC_EXPORT=1 NEXT_PUBLIC_I18N_DISABLE=1 next build)",
2626
"build": "rimraf app && next build",
2727
"start": "next start",
28-
"dev": "(cd ./perception-imports; npm run package:app:sync); NEXT_PUBLIC_GRAPHQL_URL=https://deeplinks.deep.foundation/gql next dev",
28+
"dev": "(cd ./perception-imports; npm run app:sync); NEXT_PUBLIC_GRAPHQL_URL=https://deeplinks.deep.foundation/gql next dev",
2929
"run-ios": "npx cap run ios",
3030
"open-ios": "npx cap open ios",
3131
"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",

sync-version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ const path = require('path');
33
const nextPckg = JSON.parse(fs.readFileSync(path.join(__dirname, 'package.json'), 'utf8'));
44
const electronPckg = JSON.parse(fs.readFileSync(path.join(__dirname, 'electron', 'package.json'), 'utf8'));
55
electronPckg.version = nextPckg.version;
6-
fs.writeFileSync(path.join(__dirname, 'electron', 'package.json'), JSON.stringify(electronPckg));
6+
fs.writeFileSync(path.join(__dirname, 'electron', 'package.json'), JSON.stringify(electronPckg, null, 2));

0 commit comments

Comments
 (0)