Skip to content

Commit

Permalink
fix(rules): add Facebook
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 4, 2023
1 parent 5395ba3 commit f41b2f5
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 @@ -69,6 +69,7 @@ exports[`all > should match everything 1`] = `
"expodev",
"express",
"fabric",
"facebook",
"fastify",
"fastly",
"figma",
Expand Down
7 changes: 7 additions & 0 deletions src/rules/saas/facebook.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'facebook',
name: 'Facebook',
type: 'saas',
});
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import './docusign.js';
import './dropbox.js';
import './dynatrace.js';
import './fabric.js';
import './facebook.js';
import './figma.js';
import './gitbook.js';
import './github.js';
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export type AllowedKeys =
| 'expodev'
| 'express'
| 'fabric'
| 'facebook'
| 'fastify'
| 'fastly'
| 'figma'
Expand Down

0 comments on commit f41b2f5

Please sign in to comment.