Skip to content

Commit

Permalink
fix(rules): rename jira
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Oct 31, 2023
1 parent 910480e commit 0ef6782
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 10 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.jira",
"atlassian.opsgenie",
"auth0",
"aws",
Expand Down Expand Up @@ -230,7 +231,6 @@ exports[`all > should match everything 1`] = `
"java",
"jekyll",
"jenkins",
"jira",
"joomla",
"kibana",
"klarna",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'jira',
tech: 'atlassian.jira',
name: 'Jira',
type: 'saas',
dependencies: [
Expand Down
2 changes: 1 addition & 1 deletion src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import './hypertune.js';
import './iftt.js';
import './intercom.js';
import './intuit.js';
import './jira.js';
import './atlassian.jira.js';
import './klarna.js';
import './klaviyo.js';
import './launchdarkly.js';
Expand Down
3 changes: 2 additions & 1 deletion src/rules/spec/docker/__snapshots__/component.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ exports[`docker > should match everything 1`] = `
"apache_storm",
"apache_thrift",
"atlasgo",
"atlassian",
"atlassian.jira",
"aws",
"aws.dynamodb",
"aws.lambda",
Expand Down Expand Up @@ -50,7 +52,6 @@ exports[`docker > should match everything 1`] = `
"hugo",
"influxdb",
"jenkins",
"jira",
"joomla",
"kibana",
"kong",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ exports[`docker > should match all dependencies 1`] = `
[
"algolia",
"alibabacloud",
"atlassian",
"atlassian.jira",
"aws",
"aws.cloudformation",
"aws.cloudfront",
Expand Down Expand Up @@ -43,7 +45,6 @@ exports[`docker > should match all dependencies 1`] = `
"github.pages",
"hashicorp_vault",
"heroku",
"jira",
"kubernetes",
"launchdarkly",
"netlify",
Expand Down
2 changes: 1 addition & 1 deletion src/rules/spec/nodejs/__snapshots__/component.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ exports[`npm > should match everything 1`] = `
"assemble",
"astro",
"atlassian",
"atlassian.jira",
"atlassian.opsgenie",
"auth0",
"aws",
Expand Down Expand Up @@ -140,7 +141,6 @@ exports[`npm > should match everything 1`] = `
"hypertune",
"influxdb",
"intercom",
"jira",
"koa",
"koalaanalytics",
"koyeb",
Expand Down
3 changes: 2 additions & 1 deletion src/rules/spec/php/__snapshots__/component.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ exports[`php > should match everything 1`] = `
"apache_couchdb",
"apache_kafka",
"apiplatform",
"atlassian",
"atlassian.jira",
"auth0",
"aws",
"aws.cloudfront",
Expand Down Expand Up @@ -74,7 +76,6 @@ exports[`php > should match everything 1`] = `
"hubspot",
"influxdb",
"intercom",
"jira",
"joomla",
"klaviyo",
"kubernetes",
Expand Down
3 changes: 2 additions & 1 deletion src/rules/spec/ruby/__snapshots__/lockfile.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ exports[`ruby (component) > should match everything 1`] = `
"algolia",
"apache_hadoop",
"apache_kafka",
"atlassian",
"atlassian.jira",
"auth0",
"aws",
"aws.apigateway",
Expand Down Expand Up @@ -97,7 +99,6 @@ exports[`ruby (component) > should match everything 1`] = `
"heroku",
"influxdb",
"intercom",
"jira",
"kubernetes",
"launchdarkly",
"lemonsqueezy",
Expand Down
3 changes: 2 additions & 1 deletion src/rules/spec/terraform/__snapshots__/resource.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

exports[`terraform (resource) > should match everything 1`] = `
[
"atlassian",
"atlassian.jira",
"aws",
"aws.amplifyhosting",
"aws.apigateway",
Expand Down Expand Up @@ -79,7 +81,6 @@ exports[`terraform (resource) > should match everything 1`] = `
"gcp.spanner",
"gcp.sql",
"gcp.tasks",
"jira",
"ovh",
"ovh.database",
"ovh.dedicated",
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.jira'
| 'atlassian.opsgenie'
| 'atlassian'
| 'auth0'
Expand Down Expand Up @@ -248,7 +249,6 @@ export type AllowedKeys =
| 'jekyll'
| 'jenkins'
| 'jest'
| 'jira'
| 'joomla'
| 'kibana'
| 'klarna'
Expand Down

0 comments on commit 0ef6782

Please sign in to comment.