-
-
Save Ashoat/8eb6b118d0bd4f4e6dff99fe4063ec25 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/keyserver/package.json b/keyserver/package.json | |
index 48c98f77e..92e32e81b 100644 | |
--- a/keyserver/package.json | |
+++ b/keyserver/package.json | |
@@ -13,7 +13,7 @@ | |
"update-geoip": "yarn script dist/scripts/update-geoip.js", | |
"prod": "node --trace-warnings --experimental-json-modules --loader=./loader.mjs --experimental-specifier-resolution=node dist/keyserver", | |
"dev-rsync": "yarn --silent chokidar --initial --silent -s 'src/**/*.json' 'src/**/*.cjs' -c 'yarn rsync > /dev/null 2>&1'", | |
- "dev": ". bash/source-nvm.sh && yarn concurrently --names=\"BABEL,RSYNC,NODEM\" -c \"bgBlue.bold,bgMagenta.bold,bgGreen.bold\" \"yarn babel-build --source-maps --watch\" \"yarn dev-rsync\" \". bash/source-nvm.sh && NODE_ENV=development nodemon -e js,json,cjs --watch dist --experimental-json-modules --loader=./loader.mjs --experimental-specifier-resolution=node dist/keyserver\"", | |
+ "dev": ". bash/source-nvm.sh && yarn concurrently --names=\"BABEL,RSYNC,NODEM\" -c \"bgBlue.bold,bgMagenta.bold,bgGreen.bold\" \"yarn babel-build --source-maps --watch\" \"yarn dev-rsync\" \". bash/source-nvm.sh && NODE_ENV=development COMM_ALCHEMY_KEY=... nodemon -e js,json,cjs --watch dist --experimental-json-modules --loader=./loader.mjs --experimental-specifier-resolution=node dist/keyserver\"", | |
"script": ". bash/source-nvm.sh && NODE_ENV=development node --experimental-json-modules --loader=./loader.mjs --experimental-specifier-resolution=node", | |
"test": "jest" | |
}, | |
diff --git a/web/package.json b/web/package.json | |
index f14b61466..40f4a7b60 100644 | |
--- a/web/package.json | |
+++ b/web/package.json | |
@@ -6,7 +6,7 @@ | |
"license": "BSD-3-Clause", | |
"scripts": { | |
"clean": "rm -rf dist/ && rm -rf node_modules/", | |
- "dev": "yarn concurrently --names=\"NODESSR,BROWSER\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn webpack --config webpack.config.cjs --config-name=server --watch\" \"yarn webpack-dev-server --config webpack.config.cjs --config-name=browser\"", | |
+ "dev": "yarn concurrently --names=\"NODESSR,BROWSER\" -c \"bgBlue.bold,bgMagenta.bold\" \"COMM_ALCHEMY_KEY=... yarn webpack --config webpack.config.cjs --config-name=server --watch\" \"COMM_ALCHEMY_KEY=... yarn webpack-dev-server --config webpack.config.cjs --config-name=browser\"", | |
"prod": "yarn webpack --config webpack.config.cjs --env prod --progress", | |
"test": "jest" | |
}, | |
diff --git a/web/settings/account-settings.react.js b/web/settings/account-settings.react.js | |
index 5e3bb4fdc..7edd651d0 100644 | |
--- a/web/settings/account-settings.react.js | |
+++ b/web/settings/account-settings.react.js | |
@@ -60,7 +60,7 @@ function AccountSettings(): React.Node { | |
} | |
let changePasswordSection; | |
- if (isAccountWithPassword) { | |
+ if (isAccountWithPassword || true) { | |
changePasswordSection = ( | |
<li> | |
<span>Password</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment