@candlerip/shared3 0.0.11 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@candlerip/shared3",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.13",
|
4
4
|
"type": "module",
|
5
5
|
"main": "src/index.js",
|
6
6
|
"bin": {
|
@@ -11,6 +11,7 @@
|
|
11
11
|
"crs-git-push": "./_devops/git/git-push.sh",
|
12
12
|
"crs-npm-patch-version": "./_devops/npm/npm-patch-version.sh",
|
13
13
|
"crs-npm-publish": "./_devops/npm/npm-publish.sh",
|
14
|
+
"crs-npm-update-packages": "./_devops/npm/npm-update-packages.sh",
|
14
15
|
"crs-prettier": "./_devops/prettier/prettier.sh",
|
15
16
|
"crs-tsc-compile": "./_devops/typescript/tsc-compile.sh",
|
16
17
|
"crs-tsc-watch": "./_devops/typescript/tsc-watch.sh"
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import { EnvironmentVariables } from '../../../../environment/index.js';
|
2
|
-
export type BackendInitConfig = Pick<EnvironmentVariables, 'PROJECT_NAME' | 'S3_IMAGES_BUCKET_NAME'>;
|
2
|
+
export type BackendInitConfig = Pick<EnvironmentVariables, 'DOMAIN_NAME' | 'PROJECT_NAME' | 'S3_IMAGES_BUCKET_NAME'>;
|