Skip to content

Commit 65afa93

Browse files
authored
Merge pull request #40 from pedrobmarin/master
chore!: move to mconf organization
2 parents 64f193b + 87384fb commit 65afa93

3 files changed

Lines changed: 13 additions & 10 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A BigBlueButton's server and API's secret
1010

1111
**IMPORTANT**: do not run this lib with `root` privileges
1212

13-
`npm i bigbluebot`
13+
`npm i @mconf/bigbluebot`
1414

1515
`cp node_modules/bigbluebot/.env.template .env`
1616

@@ -83,7 +83,7 @@ Create your script, e.g. `run.js`:
8383
Join audio with microphone
8484

8585
```js
86-
const bigbluebot = require('bigbluebot');
86+
const bigbluebot = require('@mconf/bigbluebot');
8787

8888
const actions = async page => {
8989
await bigbluebot.audio.modal.microphone(page);
@@ -95,7 +95,7 @@ bigbluebot.run(actions);
9595
Join audio as a listener
9696

9797
```js
98-
const bigbluebot = require('bigbluebot');
98+
const bigbluebot = require('@mconf/bigbluebot');
9999

100100
const actions = async page => {
101101
await bigbluebot.audio.modal.listen(page);
@@ -107,7 +107,7 @@ bigbluebot.run(actions);
107107
Join video
108108

109109
```js
110-
const bigbluebot = require('bigbluebot');
110+
const bigbluebot = require('@mconf/bigbluebot');
111111

112112
const actions = async page => {
113113
await bigbluebot.video.join(page);
@@ -119,7 +119,7 @@ bigbluebot.run(actions);
119119
Write in chat
120120

121121
```js
122-
const bigbluebot = require('bigbluebot');
122+
const bigbluebot = require('@mconf/bigbluebot');
123123

124124
const actions = async page => {
125125
await bigbluebot.chat.send(page);
@@ -133,7 +133,7 @@ bigbluebot.run(actions);
133133
You can pass options as a run parameter
134134

135135
```js
136-
const bigbluebot = require('bigbluebot');
136+
const bigbluebot = require('@mconf/bigbluebot');
137137

138138
const actions = async page => {
139139
await bigbluebot.audio.modal.microphone(page);

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "bigbluebot",
3-
"version": "2.4.2",
2+
"name": "@mconf/bigbluebot",
3+
"version": "2.4.3",
44
"description": "BigBlueButton bots",
55
"main": "index.js",
66
"scripts": {
@@ -27,6 +27,9 @@
2727
},
2828
"author": "Pedro Beschorner Marin <pedrobmarin@gmail.com>",
2929
"license": "MIT",
30+
"publishConfig": {
31+
"access": "public"
32+
},
3033
"bugs": {
3134
"url": "https://github.com/mconf/bigbluebot/issues"
3235
},

0 commit comments

Comments
 (0)