@candlerip/shared 0.0.20 → 0.0.22
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/devops/cdk/cdk-deploy.sh +4 -0
- package/package.json +2 -1
- package/src/environment/environment-variable-name/domains.d.ts +2 -0
- package/src/environment/environment-variables/domains.d.ts +1 -1
- package/src/environment/index.d.ts +1 -1
- package/src/environment/index.js +1 -1
- package/src/service/service-environment-variables/type.d.ts +2 -2
- package/src/environment/environment-variable/domains.d.ts +0 -2
- /package/src/environment/{environment-variable → environment-variable-name}/domains.js +0 -0
- /package/src/environment/{environment-variable → environment-variable-name}/index.d.ts +0 -0
- /package/src/environment/{environment-variable → environment-variable-name}/index.js +0 -0
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@candlerip/shared",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "=22.19.0"
|
|
7
7
|
},
|
|
8
8
|
"main": "src/index.js",
|
|
9
9
|
"bin": {
|
|
10
|
+
"crs-cdk-deploy": "devops/cdk/cdk-deploy.sh",
|
|
10
11
|
"crs-create-env-file": "devops/environment/create-env-file.sh",
|
|
11
12
|
"crs-publish-to-docker-hub": "./devops/docker/publish-to-docker-hub.sh",
|
|
12
13
|
"crs-eslint": "devops/eslint/eslint.sh",
|
package/src/environment/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EnvironmentVariableName } from 'src/environment';
|
|
2
2
|
import { ServiceName } from '../service-name/index.js';
|
|
3
3
|
export type ServiceEnvironmentVariables = {
|
|
4
|
-
[key in ServiceName]:
|
|
4
|
+
[key in ServiceName]: EnvironmentVariableName[];
|
|
5
5
|
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|