Skip to content

Commit

Permalink
fix(rules): add Docusign
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 4, 2023
1 parent 4e2af20 commit 736f516
Show file tree
Hide file tree
Showing 6 changed files with 26 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 @@ -58,6 +58,7 @@ exports[`all > should match everything 1`] = `
"discord",
"discourse",
"docker",
"docusign",
"dropbox",
"elasticsearch",
"elasticstack",
Expand Down
11 changes: 11 additions & 0 deletions src/rules/saas/docusign.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { register } from '../../register.js';

register({
tech: 'docusign',
name: 'Docusign',
type: 'saas',
dependencies: [
{ type: 'npm', name: 'docusign-esign' },
{ type: 'ruby', name: 'docusign_esign' },
],
});
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import './crowdin.js';
import './datadog.js';
import './deferrun.js';
import './discord.js';
import './docusign.js';
import './dropbox.js';
import './fabric.js';
import './figma.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 @@ -27,6 +27,7 @@ exports[`npm > should match everything 1`] = `
"datadog",
"deferrun",
"discord",
"docusign",
"elasticsearch",
"esbuild",
"eslint",
Expand Down Expand Up @@ -620,6 +621,11 @@ exports[`npm > should match everything 2`] = `
"docsearch.js",
"0.0.0",
],
[
"npm",
"docusign-esign",
"0.0.0",
],
[
"npm",
"esbuild",
Expand Down
6 changes: 6 additions & 0 deletions src/rules/spec/ruby/__snapshots__/component.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ exports[`ruby (component) > should match everything 1`] = `
"cloudflare",
"couchbase",
"datadog",
"docusign",
"elasticsearch",
"fastly",
"firebase",
Expand Down Expand Up @@ -206,6 +207,11 @@ exports[`ruby (component) > should match everything 2`] = `
"dependabot-common",
"1.0.0",
],
[
"ruby",
"docusign_esign",
"1.0.0",
],
[
"ruby",
"elasticsearch",
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export type AllowedKeys =
| 'discord'
| 'discourse'
| 'docker'
| 'docusign'
| 'dropbox'
| 'elasticloud'
| 'elasticsearch'
Expand Down

0 comments on commit 736f516

Please sign in to comment.