From d672f84275e02a9f7dbef06ce43be1bd0ca4e0a5 Mon Sep 17 00:00:00 2001 From: prabhu <7842+prabhu@users.noreply.github.com> Date: Tue, 4 Mar 2025 14:52:22 +0000 Subject: [PATCH] Do not exclude examples directory (#180) Signed-off-by: Prabhu Subramanian --- build.sbt | 2 +- codemeta.json | 2 +- src/main/scala/io/appthreat/atom/Atom.scala | 2 +- wrapper/nodejs/package-lock.json | 12 ++++++------ wrapper/nodejs/package.json | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/build.sbt b/build.sbt index 0353a6c..71ff6d0 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "atom" ThisBuild / organization := "io.appthreat" -ThisBuild / version := "2.1.13" +ThisBuild / version := "2.1.14" ThisBuild / scalaVersion := "3.6.2" val chenVersion = "2.3.3" diff --git a/codemeta.json b/codemeta.json index 887961d..5a1e6f5 100644 --- a/codemeta.json +++ b/codemeta.json @@ -7,7 +7,7 @@ "downloadUrl": "https://github.com/AppThreat/atom", "issueTracker": "https://github.com/AppThreat/atom/issues", "name": "atom", - "version": "2.1.13", + "version": "2.1.14", "description": "Atom is a novel intermediate representation for next-generation code analysis.", "applicationCategory": "code-analysis", "keywords": [ diff --git a/src/main/scala/io/appthreat/atom/Atom.scala b/src/main/scala/io/appthreat/atom/Atom.scala index 94476dc..63dcc06 100644 --- a/src/main/scala/io/appthreat/atom/Atom.scala +++ b/src/main/scala/io/appthreat/atom/Atom.scala @@ -578,7 +578,7 @@ object Atom: RubyConfig() .withInputPath(config.inputPath.pathAsString) .withOutputPath(outputAtomFile) - .withIgnoredFilesRegex(".*(samples|examples|docs|tests|vendor|spec).*") + .withIgnoredFilesRegex(".*(docs|tests|vendor|spec).*") ).map { ag => ag } diff --git a/wrapper/nodejs/package-lock.json b/wrapper/nodejs/package-lock.json index ad4049f..e243ef7 100644 --- a/wrapper/nodejs/package-lock.json +++ b/wrapper/nodejs/package-lock.json @@ -1,16 +1,16 @@ { "name": "@appthreat/atom", - "version": "2.1.13", + "version": "2.1.14", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@appthreat/atom", - "version": "2.1.13", + "version": "2.1.14", "license": "Apache-2.0", "dependencies": { "@babel/parser": "^7.26.9", - "typescript": "^5.7.2", + "typescript": "^5.8.2", "yargs": "^17.7.2" }, "bin": { @@ -1209,9 +1209,9 @@ } }, "node_modules/typescript": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", - "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", + "version": "5.8.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", + "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", diff --git a/wrapper/nodejs/package.json b/wrapper/nodejs/package.json index 65d02c5..c0ff62c 100644 --- a/wrapper/nodejs/package.json +++ b/wrapper/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "@appthreat/atom", - "version": "2.1.13", + "version": "2.1.14", "description": "Create atom (⚛) representation for your application, packages and libraries", "exports": "./index.js", "type": "module", @@ -10,7 +10,7 @@ }, "dependencies": { "@babel/parser": "^7.26.9", - "typescript": "^5.7.2", + "typescript": "^5.8.2", "yargs": "^17.7.2" }, "devDependencies": {