sst 2.24.8 → 2.24.10
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/package.json +1 -1
- package/project.js +7 -8
- package/support/event-bus-retrier/index.mjs +21 -21
package/package.json
CHANGED
package/project.js
CHANGED
|
@@ -115,14 +115,13 @@ export async function initProject(globals) {
|
|
|
115
115
|
}
|
|
116
116
|
}
|
|
117
117
|
})();
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
path
|
|
124
|
-
|
|
125
|
-
});
|
|
118
|
+
// Load .env files
|
|
119
|
+
[
|
|
120
|
+
path.join(project.paths.root, `.env`),
|
|
121
|
+
path.join(project.paths.root, `.env.local`),
|
|
122
|
+
path.join(project.paths.root, `.env.${project.config.stage}`),
|
|
123
|
+
path.join(project.paths.root, `.env.${project.config.stage}.local`),
|
|
124
|
+
].forEach((path) => dotenv.config({ path, override: true }));
|
|
126
125
|
Logger.debug("Config loaded", project);
|
|
127
126
|
}
|
|
128
127
|
async function usePersonalStage(out) {
|