Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ipaunov committed Mar 18, 2024
1 parent 9eac8b9 commit 09ba058
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = class NotificationsBuildPlugin extends BuildPlugin {
async build() {
if (exists(cds.env.requires.notifications?.types)) {
const fileName = path.basename(cds.env.requires.notifications.types);
await this.copy(cds.env.requires.notifications.types).to(fileName);
await copy(cds.env.requires.notifications.types).to(path.join(this.task.dest, fileName));
}
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"chai": "^4.3.10"
},
"scripts": {
"start": "cds-serve",
"lint": "npx eslint .",
"test": "npx jest",
"test-with-coverage": "npx jest --coverage"
Expand Down

0 comments on commit 09ba058

Please sign in to comment.