Skip to content

Commit

Permalink
0.0.0-dev.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Jul 22, 2024
1 parent 890cc88 commit cdde01f
Show file tree
Hide file tree
Showing 4 changed files with 179 additions and 13 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": "sdk",
"version": "0.0.0-dev.12",
"version": "0.0.0-dev.13",
"description": "Data-oriented operating space of associative data representation. Wellcome to the deep universe",
"homepage": "https://deep.foundation/",
"author": {
Expand Down
155 changes: 155 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 17 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/sdk",
"version": "0.0.0-dev.12",
"version": "0.0.0-dev.13",
"description": "",
"license": "Unlicense",
"main": "./bin/server.js",
Expand Down Expand Up @@ -29,19 +29,13 @@
"dev": "next dev",
"run-ios": "npx cap run ios",
"open-ios": "npx cap open ios",
"build-ios": "rimraf app && npm run export && npx cap sync ios"
"build-ios": "rimraf app && npm run export && npx cap sync ios",
"sync-versions": "node ./sync-version.js && git add . ./electron/package.json"
},
"pre-commit": [
"sync-versions"
],
"dependencies": {
"dotenv-load": "^2.0.1",
"next": "^14.2.2",
"next-env": "^1.1.1",
"next-i18next": "^15.2.0",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.12.1",
"typescript": "5.0.4",
"react-i18next": "^14.1.0",
"@capacitor-community/electron": "^5.0.1",
"@capacitor/android": "^5.7.4",
"@capacitor/cli": "^5.7.4",
Expand All @@ -62,15 +56,26 @@
"buffer": "^6.0.3",
"case-anything": "^2.1.13",
"dotenv": "^16.0.3",
"dotenv-load": "^2.0.1",
"events": "^3.3.0",
"firebase": "^9.19.1",
"framer-motion": "^6.5.1",
"i18next": "^23.11.1",
"jest": "^29.5.0",
"next": "^14.2.2",
"next-env": "^1.1.1",
"next-i18next": "^15.2.0",
"next-pwa": "^5.6.0",
"next-transpile-modules": "^10.0.0",
"pre-commit": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.12.1",
"react-i18next": "^14.1.0",
"rimraf": "^5.0.5",
"run-script-os": "^1.1.6",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"typescript-json-schema": "^0.56.0"
}
}
6 changes: 6 additions & 0 deletions sync-version.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
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.version = nextPckg.version;
fs.writeFileSync(path.join(__dirname, 'electron', 'package.json'), JSON.stringify(electronPckg, null, 2));

0 comments on commit cdde01f

Please sign in to comment.