@rvoh/psychic-websockets 2.0.0-alpha.1 → 2.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
- import { DreamCLI } from '@rvoh/dream';
1
+ import { DreamCLI } from '@rvoh/dream/system';
2
2
  import { PsychicApp, PsychicServer } from '@rvoh/psychic';
3
- import { PsychicLogos } from '@rvoh/psychic/internal';
3
+ import { PsychicLogos } from '@rvoh/psychic/system';
4
4
  import { colorize } from '@rvoh/psychic/utils';
5
5
  import { createAdapter } from '@socket.io/redis-adapter';
6
6
  import * as socketio from 'socket.io';
@@ -62,7 +62,6 @@ export default class Cable {
62
62
 
63
63
  ${error.message}
64
64
  `);
65
- console.trace();
66
65
  }
67
66
  }
68
67
  });
@@ -147,6 +146,6 @@ function welcomeMessage({ port }) {
147
146
  DreamCLI.logger.log('', { logPrefix: '' });
148
147
  }
149
148
  else {
150
- DreamCLI.logger.log(`psychic dev server started at port ${port} with websockets`);
149
+ DreamCLI.logger.log(`psychic server started at port ${port} with websockets`);
151
150
  }
152
151
  }
@@ -1,6 +1,6 @@
1
- import { DreamCLI } from '@rvoh/dream';
1
+ import { DreamCLI } from '@rvoh/dream/system';
2
2
  import { PsychicApp, PsychicServer } from '@rvoh/psychic';
3
- import { PsychicLogos } from '@rvoh/psychic/internal';
3
+ import { PsychicLogos } from '@rvoh/psychic/system';
4
4
  import { colorize } from '@rvoh/psychic/utils';
5
5
  import { createAdapter } from '@socket.io/redis-adapter';
6
6
  import * as socketio from 'socket.io';
@@ -62,7 +62,6 @@ export default class Cable {
62
62
 
63
63
  ${error.message}
64
64
  `);
65
- console.trace();
66
65
  }
67
66
  }
68
67
  });
@@ -147,6 +146,6 @@ function welcomeMessage({ port }) {
147
146
  DreamCLI.logger.log('', { logPrefix: '' });
148
147
  }
149
148
  else {
150
- DreamCLI.logger.log(`psychic dev server started at port ${port} with websockets`);
149
+ DreamCLI.logger.log(`psychic server started at port ${port} with websockets`);
151
150
  }
152
151
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "type": "module",
3
3
  "name": "@rvoh/psychic-websockets",
4
4
  "description": "Websocket system for Psychic applications",
5
- "version": "2.0.0-alpha.1",
5
+ "version": "2.0.0-alpha.3",
6
6
  "author": "RVO Health",
7
7
  "repository": {
8
8
  "type": "git",
@@ -39,8 +39,8 @@
39
39
  "prepack": "yarn build"
40
40
  },
41
41
  "peerDependencies": {
42
- "@rvoh/dream": "*",
43
- "@rvoh/psychic": "*",
42
+ "@rvoh/dream": "^2.0.0-alpha.3",
43
+ "@rvoh/psychic": "^2.0.0-alpha.2",
44
44
  "@socket.io/redis-adapter": "*",
45
45
  "@socket.io/redis-emitter": "*",
46
46
  "ioredis": "*",
@@ -49,9 +49,9 @@
49
49
  },
50
50
  "devDependencies": {
51
51
  "@eslint/js": "=9.0.0",
52
- "@rvoh/dream": "^2.0.0-alpha.1",
52
+ "@rvoh/dream": "^2.0.0-alpha.3",
53
53
  "@rvoh/dream-spec-helpers": "^1.2.1",
54
- "@rvoh/psychic": "^2.0.0-alpha.1",
54
+ "@rvoh/psychic": "^2.0.0-alpha.2",
55
55
  "@rvoh/psychic-spec-helpers": "^1.1.3",
56
56
  "@socket.io/redis-adapter": "^8.3.0",
57
57
  "@socket.io/redis-emitter": "^5.1.0",