Skip to content

Commit

Permalink
fix(rules): add IBM Cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Oct 13, 2023
1 parent 2b798a9 commit d40e522
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 @@ -198,6 +198,7 @@ exports[`all > should match everything 1`] = `
"huggingface",
"hyperdx",
"hypertune",
"ibmcloud",
"iftt",
"influxdb",
"intercom",
Expand Down
7 changes: 7 additions & 0 deletions src/rules/cloud/ibmcloud.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'ibmcloud',
name: 'IBM Cloud',
type: 'cloud',
});
1 change: 1 addition & 0 deletions src/rules/cloud/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import './firebase.js';
import './flyio.js';
import './gcp.js';
import './heroku.js';
import './ibmcloud.js';
import './netlify.js';
import './nextcloud.js';
import './oraclecloud.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 @@ -213,6 +213,7 @@ export type AllowedKeys =
| 'huggingface'
| 'hyperdx'
| 'hypertune'
| 'ibmcloud'
| 'iftt'
| 'influxdb'
| 'intercom'
Expand Down

0 comments on commit d40e522

Please sign in to comment.