Skip to content

Commit eb14475

Browse files
committed
Updated toolbag
1 parent 84cf5c2 commit eb14475

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.toolbagrc.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
'use strict'
22

3-
const plugins = require('toolbag-plugins')
3+
const StatsCollector = require('toolbag-plugin-stats-collector')
4+
const UdpReporter = require('toolbag-plugin-udp-reporter')
45

56
module.exports = (defaults, done) => {
67
done(null, {
78
plugins: [
89
{
9-
plugin: plugins.UdpReporter,
10+
plugin: UdpReporter,
1011
options: {
1112
id: 'udp reporter',
1213
socketType: 'udp4',
@@ -15,7 +16,7 @@ module.exports = (defaults, done) => {
1516
}
1617
},
1718
{
18-
plugin: plugins.StatsCollector,
19+
plugin: StatsCollector,
1920
options: {
2021
enabled: true,
2122
period: 1000,

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"seneca-balance-client": "0.2.0",
3535
"seneca-level-store": "0.2.3",
3636
"seneca-mesh": "0.5.0",
37-
"toolbag": "0.14.0",
38-
"toolbag-plugins": "0.1.0"
37+
"toolbag": "2.0.0",
38+
"toolbag-plugin-stats-collector": "1.0.0",
39+
"toolbag-plugin-udp-reporter": "1.0.0"
3940
}
4041
}

0 commit comments

Comments
 (0)