Skip to content

Commit 52ecf1a

Browse files
committed
fix(webhooks): rename webhook-type to fix lint issue
1 parent f78d000 commit 52ecf1a

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

packages/webhooks-v5/commands/webhooks/add.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../lib/webhook_type.js')
3+
const webhookType = require('../../lib/webhook-type.js')
44

55
class Add extends Command {
66
async run() {

packages/webhooks-v5/commands/webhooks/deliveries/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../../lib/webhook_type.js')
3+
const webhookType = require('../../../lib/webhook-type.js')
44

55
class Deliveries extends Command {
66
async run() {

packages/webhooks-v5/commands/webhooks/deliveries/info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../../lib/webhook_type.js')
3+
const webhookType = require('../../../lib/webhook-type.js')
44

55
class Info extends Command {
66
async run() {

packages/webhooks-v5/commands/webhooks/events/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../../lib/webhook_type.js')
3+
const webhookType = require('../../../lib/webhook-type.js')
44

55
class Events extends Command {
66
async run() {

packages/webhooks-v5/commands/webhooks/events/info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../../lib/webhook_type.js')
3+
const webhookType = require('../../../lib/webhook-type.js')
44

55
class Info extends Command {
66
async run() {

packages/webhooks-v5/commands/webhooks/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../lib/webhook_type.js')
3+
const webhookType = require('../../lib/webhook-type.js')
44

55
class Webhooks extends Command {
66
async run() {

packages/webhooks-v5/commands/webhooks/info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../lib/webhook_type.js')
3+
const webhookType = require('../../lib/webhook-type.js')
44

55
class Info extends Command {
66
async run() {

packages/webhooks-v5/commands/webhooks/remove.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../lib/webhook_type.js')
3+
const webhookType = require('../../lib/webhook-type.js')
44

55
class Remove extends Command {
66
async run() {

packages/webhooks-v5/commands/webhooks/update.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const {Command, flags} = require('@heroku-cli/command')
22
const cli = require('heroku-cli-util')
3-
const webhookType = require('../../lib/webhook_type.js')
3+
const webhookType = require('../../lib/webhook-type.js')
44

55
class Update extends Command {
66
async run() {
@@ -47,7 +47,7 @@ module.exports = Update
4747
//
4848
// let co = require('co')
4949
// let cli = require('heroku-cli-util')
50-
// let webhookType = require('../../lib/webhook_type.js')
50+
// let webhookType = require('../../lib/webhook-type.js')
5151
//
5252
// function * run(context, heroku) {
5353
// let {path, display} = webhookType(context)

0 commit comments

Comments
 (0)