Skip to content

Commit

Permalink
Changes to package.json & small change to lib/index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dragolea committed Oct 23, 2023
1 parent 8313e45 commit 031c81e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
6 changes: 2 additions & 4 deletions lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
// Imported and exported to Uppercase to be in guidance with other decorators.
import { inject as Inject } from 'inversify';

export * from './decorators/class';
export * from './decorators/method';
export { ServiceHelper, type TypedRequest, type ActionRequest, type ActionReturn } from './util/types/types';
export * from './util/helpers/CDSDispatcher';

export { Inject };
// Exported to uppercase to be in guidance with other decorators.
export { inject as Inject } from 'inversify';
8 changes: 4 additions & 4 deletions package-lock.json

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

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"fix": "npm run eslint:fix && npm run prettier:fix",
"test": "npm run build:entities:test --prefix ./test/bookshop && jest",
"test:newman": "newman run ./test/e2e/CDS-TS-Dispatcher.postman_collection.json --environment ./test/e2e/environment.json --bail",
"start:bookshop": "npm run start --prefix /test/bookshop",
"start:bookshop": "npm run start --prefix ./test/bookshop",
"prepare": "husky install"
},
"repository": {
Expand Down Expand Up @@ -49,19 +49,19 @@
"homepage": "https://github.com/dxfrontier/cds-ts-dispatcher#readme",
"dependencies": {
"@sap/cds": "^7.3.0",
"inversify": "^6.0.1",
"inversify": "^6.0.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@cap-js/sqlite": "^1.3.0",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"@cap-js/sqlite": "^1.3.1",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
Expand Down

0 comments on commit 031c81e

Please sign in to comment.