nebula-starter-kit 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/utils/addService.js
CHANGED
|
@@ -14,6 +14,7 @@ const generateFiles_1 = require("./generateFiles");
|
|
|
14
14
|
const generateSchemas_1 = require("./generateSchemas");
|
|
15
15
|
const region = (0, telemetryAddon_1.getAwsRegion)();
|
|
16
16
|
function getServicePorts(service, appName) {
|
|
17
|
+
console.log('Getting service ports for:', service, appName);
|
|
17
18
|
const ROOT = process.cwd();
|
|
18
19
|
let config;
|
|
19
20
|
let nebulaPath;
|
package/package.json
CHANGED
package/templates/package.json
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "nest start",
|
|
7
7
|
"start:dev": "nest start --watch",
|
|
8
|
+
"dev": "export $(cat .env | xargs) && serverless offline --config services/$npm_config_service/serverless.yml",
|
|
8
9
|
"build": "nest build",
|
|
9
10
|
"format": "prettier --write \"src/**/*.{ts, tsx}\"",
|
|
10
11
|
"predeploy": "cd ui && npm install && npm run build && npm run export",
|