Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #55 from JupiterOne/fix-upgrade
Browse files Browse the repository at this point in the history
fix files for upgrade
  • Loading branch information
RonaldEAM authored Aug 7, 2024
2 parents 192c035 + d46eeb6 commit d6ebe66
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
node_modules/
dist/
.j1-integration/
.j1-integration-cache/
.env
.eslintcache
tsconfig.tsbuildinfo
.npmrc
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
dist
coverage/
.j1-integration
.j1-integration-cache
.gitleaks.yml
CHANGELOG.md
5 changes: 1 addition & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
module.exports = {
...require('@jupiterone/integration-sdk-dev-tools/config/jest'),
setupFiles: ['dotenv/config'],
};
module.exports = require('@jupiterone/integration-sdk-dev-tools/config/jest');
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/graph-sonarqube",
"version": "2.1.0",
"version": "2.1.1",
"description": "Sonarqube integration for JupiterOne",
"repository": {
"type": "git",
Expand Down
7 changes: 5 additions & 2 deletions tsconfig.dist.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"extends": "./tsconfig.json",
"include": ["src"],
"include": ["src", "package.json"],
"exclude": [
"dist",
"**/*.test.ts",
"**/*.test.js",
"**/*/__tests__/**/*.ts",
"**/*/__mocks__/**/*.ts"
"**/*/__tests__/**/*.js",
"**/*/__mocks__/**/*.ts",
"**/*/__mocks__/**/*.js"
]
}

0 comments on commit d6ebe66

Please sign in to comment.