Skip to content

Commit

Permalink
fix(rules): add Klaviyo
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 3, 2023
1 parent 813e20a commit 9f6f69f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/rules/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ exports[`all > should match everything 1`] = `
"influxdb",
"jenkins",
"kibana",
"klaviyo",
"koa",
"kubernetes",
"logrocket",
Expand Down
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import './gitbook.js';
import './github.js';
import './hubspot.js';
import './huggingface.js';
import './klaviyo.js';
import './logrocket.js';
import './mailchimp.js';
import './mailjet.js';
Expand Down
7 changes: 7 additions & 0 deletions src/rules/saas/klaviyo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'klaviyo',
name: 'Klaviyo',
type: 'saas',
});
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export type AllowedKeys =
| 'jest'
| 'jira'
| 'kibana'
| 'klaviyo'
| 'koa'
| 'kotlin'
| 'kubernetes'
Expand Down

0 comments on commit 9f6f69f

Please sign in to comment.