Skip to content

Commit 105dd63

Browse files
committed
Adding explicit buffer dependency.
1 parent 3203a3e commit 105dd63

File tree

3 files changed

+1811
-2729
lines changed

3 files changed

+1811
-2729
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
],
2020
"author": "Graylog, Inc. <[email protected]>",
2121
"license": "SSPL-1.0",
22-
"dependencies": {},
22+
"dependencies": {
23+
"buffer": "^6.0.3"
24+
},
2325
"devDependencies": {
2426
"graylog-web-plugin": "file:../graylog2-server/graylog2-web-interface/packages/graylog-web-plugin"
2527
},

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ const loadBuildConfig = require('graylog-web-plugin').loadBuildConfig;
1919
const path = require('path');
2020

2121
// Remember to use the same name here and in `getUniqueId()` in the java MetaData class
22-
module.exports = new PluginWebpackConfig('org.graylog.aws.AWSPlugin', loadBuildConfig(path.resolve(__dirname, './build.config')), {
22+
module.exports = new PluginWebpackConfig(__dirname, 'org.graylog.aws.AWSPlugin', loadBuildConfig(path.resolve(__dirname, './build.config')), {
2323
// Here goes your additional webpack configuration.
2424
});

0 commit comments

Comments
 (0)