-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We'll handle the TS transpiling ourself and point sam's esbuild at the compiled JS.
- Loading branch information
Showing
3 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
"name": "serverlessops-catalog-api", | ||
"version": "0.0.1", | ||
"description": "ServerlessOps Catalog API for Backstage", | ||
"type": "module", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:ServerlessOpsIO/serverlessops-catalog-api.git" | ||
|
@@ -25,7 +26,8 @@ | |
"test": "npm run compile && npm run unit", | ||
"test:unit": "jest", | ||
"sam:build": "sam build --parallel", | ||
"sam:package": "sam package" | ||
"sam:package": "sam package", | ||
"sam:deploy": "sam deploy" | ||
}, | ||
"devDependencies": { | ||
"@backstage/catalog-model": "^1.7.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters