Skip to content

Commit

Permalink
Fixed path to types from ./build/types to ./dist/types (#157)
Browse files Browse the repository at this point in the history
* fix(tsconfig.json): fixed path to types from ./build/types to ./dist/types

* fix(package.json): added the missing ts-node dev dep to workflow-node-sdk and rules-engine

* fix(package.json): added the missing fs-extra dev dep to workflow-node-sdk and rules-engine
  • Loading branch information
Omri-Levy committed Mar 14, 2023
1 parent 2efdcee commit 668c125
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .changeset/lucky-eggs-rhyme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@ballerine/workflow-node-sdk': patch
'@ballerine/rules-engine-lib': patch
---

fixed path to types from build to dist
6 changes: 4 additions & 2 deletions packages/rules-engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,23 @@
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitest/coverage-istanbul": "^0.28.4",
"concurrently": "^7.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"fs-extra": "^11.1.0",
"prettier": "^2.1.1",
"rollup": "2.70.2",
"rollup-plugin-dts": "4.2.2",
"rollup-plugin-size": "0.2.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "5.6.0",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.4",
"concurrently": "^7.6.0"
"vitest": "^0.28.4"
}
}
4 changes: 2 additions & 2 deletions packages/rules-engine/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"outDir": "./build/types",
"outDir": "./dist/types",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "ESNext",
"module": "CommonJS",
Expand All @@ -18,5 +18,5 @@
"pretty": true
},
"files": ["src/index.ts"],
"include": ["src"],
"include": ["src"]
}
8 changes: 8 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions sdks/workflow-node-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,14 @@
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"fs-extra": "^11.1.0",
"prettier": "^2.1.1",
"rollup": "2.70.2",
"rollup-plugin-dts": "4.2.2",
"rollup-plugin-size": "0.2.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "5.6.0",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.5"
Expand Down
4 changes: 2 additions & 2 deletions sdks/workflow-node-sdk/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"outDir": "./build/types",
"outDir": "./dist/types",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "ESNext",
"module": "CommonJS",
Expand All @@ -18,5 +18,5 @@
"pretty": true
},
"files": ["src/index.ts"],
"include": ["src"],
"include": ["src"]
}

0 comments on commit 668c125

Please sign in to comment.