This commit is contained in:
Thomas E Lackey 2020-12-09 21:47:41 -06:00
parent a3f6e3ba26
commit 15051608a4
6 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "1.2.5-alpha.1", "version": "1.2.6-alpha.0",
"useWorkspaces": true, "useWorkspaces": true,
"npmClient": "yarn" "npmClient": "yarn"
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@dxos/console", "name": "@dxos/console",
"version": "1.2.5-alpha.0", "version": "1.2.6-alpha.0",
"description": "Console", "description": "Console",
"main": "index.js", "main": "index.js",
"private": true, "private": true,

View File

@ -1,6 +1,6 @@
{ {
"name": "@dxos/console-app", "name": "@dxos/console-app",
"version": "1.2.5-alpha.1", "version": "1.2.6-alpha.0",
"description": "Kubenet Console Client", "description": "Kubenet Console Client",
"repository": "https://github.com/dxos/console", "repository": "https://github.com/dxos/console",
"main": "dist/es/index.js", "main": "dist/es/index.js",

View File

@ -2,6 +2,6 @@
"build": { "build": {
"name": "@dxos/console-app", "name": "@dxos/console-app",
"buildDate": "2020-12-09T23:25:12.047Z", "buildDate": "2020-12-09T23:25:12.047Z",
"version": "1.2.5-alpha.0" "version": "1.2.6-alpha.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@dxos/console-server", "name": "@dxos/console-server",
"version": "1.2.5-alpha.1", "version": "1.2.6-alpha.0",
"description": "Kubenet Console Server", "description": "Kubenet Console Server",
"main": "dist/es/index.js", "main": "dist/es/index.js",
"bin": { "bin": {
@ -31,7 +31,7 @@
"dependencies": { "dependencies": {
"@babel/polyfill": "^7.8.7", "@babel/polyfill": "^7.8.7",
"@babel/runtime": "^7.8.7", "@babel/runtime": "^7.8.7",
"@dxos/console-app": "^1.2.5-alpha.1", "@dxos/console-app": "^1.2.6-alpha.0",
"@wirelineio/wns-schema": "^0.1.1", "@wirelineio/wns-schema": "^0.1.1",
"apollo-boost": "^0.4.9", "apollo-boost": "^0.4.9",
"apollo-server-express": "^2.13.1", "apollo-server-express": "^2.13.1",

View File

@ -9,7 +9,7 @@ const ifRadicle = () => {
try { try {
const result = childProcess.execSync('docker ps -f "ancestor=dxos/radicle-seed-node" -q'); const result = childProcess.execSync('docker ps -f "ancestor=dxos/radicle-seed-node" -q');
if (result && result.toString()) { if (result && result.toString()) {
return { title: 'Radicle', url: '/' }; return { title: 'Radicle', url: '/radicle/' };
} }
} catch (e) {} } catch (e) {}
}; };