Skip to content

Commit

Permalink
Do not exclude examples directory (#180)
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu authored Mar 4, 2025
1 parent a356a78 commit d672f84
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/io/appthreat/atom/Atom.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
12 changes: 6 additions & 6 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": "2.1.13",
"version": "2.1.14",
"description": "Create atom (⚛) representation for your application, packages and libraries",
"exports": "./index.js",
"type": "module",
Expand All @@ -10,7 +10,7 @@
},
"dependencies": {
"@babel/parser": "^7.26.9",
"typescript": "^5.7.2",
"typescript": "^5.8.2",
"yargs": "^17.7.2"
},
"devDependencies": {
Expand Down

0 comments on commit d672f84

Please sign in to comment.