Skip to content
Snippets Groups Projects
Unverified Commit 1ed18b7e authored by Diego Sampaio's avatar Diego Sampaio Committed by GitHub
Browse files

Regression: Add @rocket.chat/emitter to EE services (#23802)

parent 8a9f5d07
No related branches found
No related tags found
No related merge requests found
...@@ -234,6 +234,11 @@ ...@@ -234,6 +234,11 @@
"debug": "^4.3.1" "debug": "^4.3.1"
} }
}, },
"@rocket.chat/emitter": {
"version": "0.30.1",
"resolved": "https://registry.npmjs.org/@rocket.chat/emitter/-/emitter-0.30.1.tgz",
"integrity": "sha512-BH1wMBo5AZwgWXIRm4k2M5rz9W7uDR+2xbfo/HP2bIjyTTq9mlU/20w0JBXAR7PaMf8gWgyfAWWGPi4ZBHA+ag=="
},
"@rocket.chat/string-helpers": { "@rocket.chat/string-helpers": {
"version": "0.29.0", "version": "0.29.0",
"resolved": "https://registry.npmjs.org/@rocket.chat/string-helpers/-/string-helpers-0.29.0.tgz", "resolved": "https://registry.npmjs.org/@rocket.chat/string-helpers/-/string-helpers-0.29.0.tgz",
......
...@@ -6,7 +6,11 @@ ...@@ -6,7 +6,11 @@
"scripts": { "scripts": {
"dev": "pm2 start ecosystem.config.js", "dev": "pm2 start ecosystem.config.js",
"pm2": "pm2", "pm2": "pm2",
"start": "ts-node index.ts", "start:account": "ts-node --files ./account/service.ts",
"start:authorization": "ts-node --files ./authorization/service.ts",
"start:ddp-streamer": "ts-node --files ./ddp-streamer/service.ts",
"start:presence": "ts-node --files ./presence/service.ts",
"start:stream-hub": "ts-node --files ./stream-hub/service.ts",
"typecheck": "tsc --noEmit --skipLibCheck", "typecheck": "tsc --noEmit --skipLibCheck",
"build": "tsc", "build": "tsc",
"build-containers": "npm run build && docker-compose build && rm -rf ./dist", "build-containers": "npm run build && docker-compose build && rm -rf ./dist",
...@@ -18,7 +22,8 @@ ...@@ -18,7 +22,8 @@
"author": "Rocket.Chat", "author": "Rocket.Chat",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@rocket.chat/string-helpers": "^0.29.0", "@rocket.chat/emitter": "^0.30.1",
"@rocket.chat/string-helpers": "^0.30.1",
"ajv": "^8.7.1", "ajv": "^8.7.1",
"bcrypt": "^5.0.1", "bcrypt": "^5.0.1",
"body-parser": "^1.19.0", "body-parser": "^1.19.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment