Skip to content

Commit

Permalink
fix(rules): add Airtable
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 3, 2023
1 parent d2c845f commit 4bd132c
Show file tree
Hide file tree
Showing 5 changed files with 17 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 @@ -3,6 +3,7 @@
exports[`all > should match everything 1`] = `
[
"adobe",
"airtable",
"algolia",
"alibabacloud",
"amplitude",
Expand Down
8 changes: 8 additions & 0 deletions src/rules/saas/airtable.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { register } from '../../register.js';

register({
tech: 'airtable',
name: 'Airtable',
type: 'saas',
dependencies: [{ type: 'npm', name: 'airtable' }],
});
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import './adobe.js';
import './airtable.js';
import './algolia.js';
import './atlassian.js';
import './auth0.js';
Expand Down
6 changes: 6 additions & 0 deletions src/rules/spec/nodejs/__snapshots__/component.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

exports[`npm > should match everything 1`] = `
[
"airtable",
"algolia",
"amplitude",
"angular",
Expand Down Expand Up @@ -489,6 +490,11 @@ exports[`npm > should match everything 2`] = `
"@vercel/postgres",
"0.0.0",
],
[
"npm",
"airtable",
"0.0.0",
],
[
"npm",
"algoliasearch",
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export type TechType =

export type AllowedKeys =
| 'adobe'
| 'airtable'
| 'algolia'
| 'alibabacloud'
| 'amplitude'
Expand Down

0 comments on commit 4bd132c

Please sign in to comment.