Skip to content

Commit

Permalink
fix(rules): rename Bitbucket
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Oct 31, 2023
1 parent 5233bad commit 4e25ed4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/rules/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ exports[`all > should match everything 1`] = `
"astro",
"atlasgo",
"atlassian",
"atlassian.bitbucket",
"atlassian.confluence",
"atlassian.jira",
"atlassian.opsgenie",
Expand Down Expand Up @@ -91,7 +92,6 @@ exports[`all > should match everything 1`] = `
"bash",
"betterstack",
"bigcommerce",
"bitbucket",
"blackfire",
"blitzjs",
"bootstrap",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { register } from '../../register.js';

register({
tech: 'bitbucket',
name: 'Bitbucket',
tech: 'atlassian.bitbucket',
name: 'atlassian.Bitbucket',
type: 'saas',
dependencies: [{ type: 'php', name: 'bitbucket/client' }],
});
2 changes: 1 addition & 1 deletion src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import './adyen.js';
import './airtable.js';
import './algolia.js';
import './auth0.js';
import './atlassian.bitbucket.js';
import './atlassian.confluence.js';
import './atlassian.jira.js';
import './atlassian.opsgenie.js';
import './atlassian.trello.js';
import './bigcommerce.js';
import './bitbucket.js';
import './box.js';
import './brevo.js';
import './clicksend.js';
Expand Down
2 changes: 1 addition & 1 deletion src/rules/spec/php/__snapshots__/component.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ exports[`php > should match everything 1`] = `
"apache_kafka",
"apiplatform",
"atlassian",
"atlassian.bitbucket",
"atlassian.jira",
"atlassian.trello",
"auth0",
Expand All @@ -25,7 +26,6 @@ exports[`php > should match everything 1`] = `
"aws.sqs",
"betterstack",
"bigcommerce",
"bitbucket",
"blackfire",
"brevo",
"clickhouse",
Expand Down
2 changes: 1 addition & 1 deletion src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export type AllowedKeys =
| 'assemble'
| 'astro'
| 'atlasgo'
| 'atlassian.bitbucket'
| 'atlassian.confluence'
| 'atlassian.jira'
| 'atlassian.opsgenie'
Expand Down Expand Up @@ -106,7 +107,6 @@ export type AllowedKeys =
| 'bash'
| 'betterstack'
| 'bigcommerce'
| 'bitbucket'
| 'blackfire'
| 'blitzjs'
| 'bootstrap'
Expand Down

0 comments on commit 4e25ed4

Please sign in to comment.