Commit 9cc650ab authored by Eric MORAND's avatar Eric MORAND
Browse files

Merge branch 'issue-2' into 'master'

Fix issue #2

Closes #2

See merge request !3
parents cffb7b05 2347a26f
Loading
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
.idea/
.nyc_output
npm-debug.log*
node_modules/
coverage
dist
 No newline at end of file
target
 No newline at end of file

.npmignore

deleted100644 → 0
+0 −14
Original line number Diff line number Diff line
/.editorconfig
/.gitignore
/.idea
/.npmignore
/.npmrc
/.nyc_output
/.nycrc.json
/.coveralls.yml
/.travis.yml
/coverage
/docs
/src
/test
/tsconfig.json
 No newline at end of file

.npmrc

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
package-lock=false

.nycrc.json

deleted100644 → 0
+0 −14
Original line number Diff line number Diff line
{
  "all": true,
  "lines": 100,
  "branches": 100,
  "functions": 100,
  "extension": [
    ".ts"
  ],
  "include": "src",
  "reporter": [
    "text-summary",
    "html"
  ]
}
 No newline at end of file

.odzrc.toml

0 → 100644
+12 −0
Original line number Diff line number Diff line
sources = [
    "./src/main/**/*.mts"
]

excludedSources = [
  "./src/main/target/**"
]

reporters = [
    "html",
    "text"
]
 No newline at end of file
Loading