@meistrari/mise-en-place 2.14.3 → 2.15.0
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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
#MISE description="Import globals environment variables from Infisical"
|
|
3
|
+
|
|
4
|
+
set -euo pipefail
|
|
5
|
+
|
|
6
|
+
INFISICAL_PROJECT_ID=fc449ba7-ca78-46fd-a826-7548115fdd44
|
|
7
|
+
|
|
8
|
+
ENV=$1
|
|
9
|
+
|
|
10
|
+
FILE_NAME=".env.$ENV"
|
|
11
|
+
|
|
12
|
+
infisical export --projectId "$INFISICAL_PROJECT_ID" --env "$ENV" --format dotenv > "$FILE_NAME"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meistrari/mise-en-place",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"Makefile",
|
|
24
24
|
"dist",
|
|
25
25
|
"scripts",
|
|
26
|
-
"tsconfig.base.json"
|
|
26
|
+
"tsconfig.base.json",
|
|
27
|
+
"mise"
|
|
27
28
|
],
|
|
28
29
|
"keywords": [],
|
|
29
30
|
"author": "",
|