Skip to content

Commit

Permalink
Merge pull request #64 from JupiterOne/63-npm-package-error
Browse files Browse the repository at this point in the history
Issue #63 - Fixing npm package error
  • Loading branch information
adam-in-ict authored Apr 14, 2022
2 parents 64fb341 + c60a2a1 commit 70e45d4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to

## [Unreleased]

## [0.2.1] - 2022-04-14

### Fixed

- Working on fix for Starbase npm package.

## [0.2.0] - 2022-04-13

### Changed
Expand Down
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
{
"name": "@jupiterone/starbase",
"version": "0.2.0",
"version": "0.2.1",
"description": "Orchestrator project for JupiterOne open source ingestion projects.",
"repository": "https://github.com/JupiterOne/starbase.git",
"author": "[email protected]",
"license": "MPL-2.0",
"files": [
"LICENSE",
"README.md",
"dist",
"bin"
],
"publishConfig": {
"access": "public"
},
Expand All @@ -26,7 +32,7 @@
"type-check": "tsc",
"test": "jest && yarn format:check",
"test:ci": "yarn lint && yarn type-check && yarn test",
"build": "tsc -p tsconfig.dist.json --declaration && cp README.md dist/README.md && cp LICENSE dist/LICENSE && cp -r bin dist"
"build": "tsc -p tsconfig.dist.json --declaration"
},
"dependencies": {
"@jupiterone/integration-sdk-cli": "^8.6.1",
Expand Down
11 changes: 1 addition & 10 deletions tsconfig.dist.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
{
"extends": "./tsconfig.json",
"include": ["src", "package.json"],
"exclude": [
"dist",
"**/*.test.ts",
"**/*.test.js",
"**/*/__tests__/**/*.ts",
"**/*/__tests__/**/*.js",
"**/*/__mocks__/**/*.ts",
"**/*/__mocks__/**/*.js"
]
"exclude": ["dist", "examples", "**/*.test.ts"]
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"outDir": "dist",
"outDir": "dist/src",
"incremental": true,
"target": "es2018",
"lib": ["es2018"],
Expand Down

0 comments on commit 70e45d4

Please sign in to comment.