Skip to content
This repository has been archived by the owner on Jun 20, 2022. It is now read-only.

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Mar 4, 2022
1 parent 7d5533a commit 4af23dc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions app/javascripts/renderer/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Bridge, ElectronDesktopCallbacks } from '@web/services/bridge';

declare const BUGSNAG_API_KEY: string;
declare const DEFAULT_SYNC_SERVER: string;
declare const DEFAULT_FILES_SERVER: string;
declare const WEBSOCKET_URL: string;
declare const ENABLE_UNFINISHED_FEATURES: string;
declare const PURCHASE_URL: string;
Expand Down Expand Up @@ -49,6 +50,7 @@ window._dashboard_url = DASHBOARD_URL;
window.startApplication(
// eslint-disable-next-line no-undef
DEFAULT_SYNC_SERVER,
DEFAULT_FILES_SERVER,
window.bridge,
window._enable_unfinished_features,
WEBSOCKET_URL
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"exclude": ["app/renderer/preload.js", "node_modules", "app/dist"],
"files": [
"app/index.ts",
"app/javascripts/renderer/renderer.ts",
"app/javascripts/renderer/grantLinuxPasswordsAccess.ts"
"app/javascripts/renderer/renderer.ts"
]
}
2 changes: 1 addition & 1 deletion web
Submodule web updated from 42d97d to b2a692
3 changes: 3 additions & 0 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ module.exports = function ({
DEFAULT_SYNC_SERVER: JSON.stringify(
process.env.DEFAULT_SYNC_SERVER || 'https://api.standardnotes.com'
),
DEFAULT_FILES_SERVER: JSON.stringify(
process.env.DEFAULT_FILES_SERVER || 'https://files.standardnotes.com'
),
BUGSNAG_API_KEY: JSON.stringify(process.env.BUGSNAG_API_KEY),
PURCHASE_URL: JSON.stringify(process.env.PURCHASE_URL),
PLANS_URL: JSON.stringify(process.env.PLANS_URL),
Expand Down

0 comments on commit 4af23dc

Please sign in to comment.