Skip to content

Commit

Permalink
fix(rules): add BigCommerce
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 5, 2023
1 parent 39fa9db commit 144f5f8
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 @@ -36,6 +36,7 @@ exports[`all > should match everything 1`] = `
"aws.sqs",
"azure",
"azure.ci",
"bigcommerce",
"bitbucket",
"bootstrap",
"box",
Expand Down
7 changes: 7 additions & 0 deletions src/rules/saas/bigcommerce.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'bigcommerce',
name: 'BigCommerce',
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 @@ -3,6 +3,7 @@ import './airtable.js';
import './algolia.js';
import './atlassian.js';
import './auth0.js';
import './bigcommerce.js';
import './bitbucket.js';
import './box.js';
import './contentful.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 @@ -49,6 +49,7 @@ export type AllowedKeys =
| 'azure.ci'
| 'azure'
| 'bash'
| 'bigcommerce'
| 'bitbucket'
| 'bootstrap'
| 'box'
Expand Down

0 comments on commit 144f5f8

Please sign in to comment.