Skip to content

Commit

Permalink
fix(rules): add Mixpanel
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 3, 2023
1 parent 95ff764 commit c4d1d28
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 @@ -102,6 +102,7 @@ exports[`all > should match everything 1`] = `
"mailjet",
"mariadb",
"memcached",
"mixpanel",
"mongodb",
"mongodbatlas",
"mysql",
Expand Down
1 change: 1 addition & 0 deletions src/rules/analytics/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import './amplitude.js';
import './googleanalytics.js';
import './mixpanel.js';
import './vercel.analytics.js';
7 changes: 7 additions & 0 deletions src/rules/analytics/mixpanel.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'mixpanel',
name: 'Mixpanl',
type: 'analytics',
});
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ export type AllowedKeys =
| 'mailjet'
| 'mariadb'
| 'memcached'
| 'mixpanel'
| 'mongodb'
| 'mongodbatlas'
| 'mysql'
Expand Down

0 comments on commit c4d1d28

Please sign in to comment.