Skip to content

Commit fb53dcf

Browse files
Copilotantobinary
andauthored
chore: update names to bbb-plugin-template after repository rename
Agent-Logs-Url: https://github.com/bigbluebutton/bbb-plugin-template/sessions/c65fc844-15e0-40c9-a289-0e035aae623a Co-authored-by: antobinary <6312397+antobinary@users.noreply.github.com>
1 parent 0b8cf12 commit fb53dcf

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ npm ci
1414
npm run build-bundle
1515
```
1616

17-
The above command will generate the `dist` folder, containing the bundled JavaScript file named `<plugin-name>.js`. This file can be hosted on any HTTPS server along with its `manifest.json`.
17+
The above command will generate the `dist` folder, containing the bundled JavaScript file named `BbbPluginTemplate.js`. This file can be hosted on any HTTPS server along with its `manifest.json`.
1818

1919
If you install the Plugin separated to the manifest, remember to change the `javascriptEntrypointUrl` in the `manifest.json` to the correct endpoint.
2020

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"requiredSdkVersion": "~0.0.73",
3-
"name": "<plugin-name>",
4-
"javascriptEntrypointUrl": "<plugin-name>.js",
3+
"name": "bbb-plugin-template",
4+
"javascriptEntrypointUrl": "BbbPluginTemplate.js",
55
"localesBaseUrl": "locales"
66
}

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "<plugin-name>",
2+
"name": "bbb-plugin-template",
33
"version": "0.0.1",
44
"private": true,
55
"main": "./src/index.tsx",

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const path = require('path');
55
module.exports = {
66
entry: './src/index.tsx',
77
output: {
8-
filename: '<plugin-name>.js',
9-
library: '<plugin-name>',
8+
filename: 'BbbPluginTemplate.js',
9+
library: 'BbbPluginTemplate',
1010
libraryTarget: 'umd',
1111
publicPath: '/',
1212
globalObject: 'this',

0 commit comments

Comments
 (0)