Skip to content

Commit 540e340

Browse files
authored
CM-50468 - Add deno lock file support for SCA (#328)
1 parent 590e61f commit 540e340

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

cycode/cli/consts.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
'package.json',
7373
'package-lock.json',
7474
'yarn.lock',
75+
'deno.lock',
7576
'pnpm-lock.yaml',
7677
'npm-shrinkwrap.json',
7778
'packages.config',
@@ -127,7 +128,15 @@
127128
'go': ['go.sum', 'go.mod', 'go.mod.graph', 'Gopkg.lock'],
128129
'maven_pom': ['pom.xml'],
129130
'maven_gradle': ['build.gradle', 'build.gradle.kts', 'gradle.lockfile'],
130-
'npm': ['package.json', 'package-lock.json', 'yarn.lock', 'npm-shrinkwrap.json', '.npmrc', 'pnpm-lock.yaml'],
131+
'npm': [
132+
'package.json',
133+
'package-lock.json',
134+
'yarn.lock',
135+
'npm-shrinkwrap.json',
136+
'.npmrc',
137+
'pnpm-lock.yaml',
138+
'deno.lock',
139+
],
131140
'nuget': ['packages.config', 'project.assets.json', 'packages.lock.json', 'nuget.config'],
132141
'ruby_gems': ['Gemfile', 'Gemfile.lock'],
133142
'sbt': ['build.sbt', 'build.scala', 'build.sbt.lock'],

0 commit comments

Comments
 (0)