Skip to content

Commit

Permalink
Update chen to bring java tag improvements and package updates
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
  • Loading branch information
prabhu committed Nov 9, 2023
1 parent 1a63849 commit 07f3772
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name := "atom"
ThisBuild / organization := "io.appthreat"
ThisBuild / version := "1.5.6"
ThisBuild / version := "1.5.7"
ThisBuild / scalaVersion := "3.3.1"

val chenVersion = "0.6.1"
val chenVersion = "0.6.3"

lazy val atom = Projects.atom

Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/io/appthreat/atom/slicing/UsageSlicing.scala
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,8 @@ object UsageSlicing {
val annotationCalls = m.annotation
.map(a =>
ObservedCall(
a.name,
Option(a.fullName),
if (a.fullName.nonEmpty) a.fullName else a.name,
if (a.code.nonEmpty) Option(a.code) else Option(a.fullName),
List.empty,
"",
Option(m.isExternal),
Expand Down
46 changes: 23 additions & 23 deletions wrapper/nodejs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions wrapper/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@appthreat/atom",
"version": "1.5.6",
"version": "1.5.7",
"description": "Create atom (⚛) representation for your application, packages and libraries",
"exports": "./index.js",
"type": "module",
Expand All @@ -14,7 +14,7 @@
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.52.0"
"eslint": "^8.53.0"
},
"bin": {
"atom": "./index.js",
Expand Down

0 comments on commit 07f3772

Please sign in to comment.