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

Commit

Permalink
fix files for upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
RonaldEAM committed Aug 7, 2024
1 parent 192c035 commit 969ebd0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 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');
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 969ebd0

Please sign in to comment.