Skip to content

Commit

Permalink
fix(rules): add ClickSend
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Oct 31, 2023
1 parent 155f2fa commit dcfcf29
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 @@ -102,6 +102,7 @@ exports[`all > should match everything 1`] = `
"circleci",
"cirrusci",
"clickhouse",
"clicksend",
"cloudflare",
"cloudflare.pages",
"cloudflare.workers",
Expand Down
8 changes: 8 additions & 0 deletions src/rules/saas/clicksend.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { register } from '../../register.js';

register({
tech: 'clicksend',
name: 'ClickSend',
type: 'saas',
dependencies: [{ type: 'npm', name: 'clicksend' }],
});
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import './bigcommerce.js';
import './bitbucket.js';
import './box.js';
import './brevo.js';
import './clicksend.js';
import './commercetools.js';
import './contentful.js';
import './crowdin.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 @@ -68,6 +68,7 @@ exports[`npm > should match everything 1`] = `
"brevo",
"browserstack",
"clickhouse",
"clicksend",
"cloudflare",
"cloudflare.workers",
"commercetools",
Expand Down Expand Up @@ -1569,6 +1570,11 @@ exports[`npm > should match everything 2`] = `
"chatgpt",
"0.0.0",
],
[
"npm",
"clicksend",
"0.0.0",
],
[
"npm",
"contentful",
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ export type AllowedKeys =
| 'circleci'
| 'cirrusci'
| 'clickhouse'
| 'clicksend'
| 'cloudflare.pages'
| 'cloudflare.workers'
| 'cloudflare'
Expand Down

0 comments on commit dcfcf29

Please sign in to comment.