envlock-next 0.6.1 → 0.6.2

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/cli/index.js CHANGED
@@ -212,7 +212,7 @@ async function runNextCommand(subcommand, environment, passthroughArgs) {
212
212
  log.debug(`Environment: ${environment}`);
213
213
  log.debug(`Env file: ${envFile}`);
214
214
  log.debug(`Command: next ${subcommand} ${finalArgs.join(" ")}`);
215
- runWithSecrets({
215
+ await runWithSecrets({
216
216
  envFile,
217
217
  environment,
218
218
  onePasswordEnvId: config.onePasswordEnvId,
@@ -248,7 +248,7 @@ async function handleRunCommand(cmd, cmdArgs, opts) {
248
248
  log.debug(`Environment: ${environment}`);
249
249
  log.debug(`Env file: ${envFile}`);
250
250
  log.debug(`Command: ${cmd} ${cmdArgs.join(" ")}`);
251
- runWithSecrets({
251
+ await runWithSecrets({
252
252
  envFile,
253
253
  environment,
254
254
  onePasswordEnvId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envlock-next",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "type": "module",
5
5
  "description": "Next.js plugin and CLI for envlock",
6
6
  "license": "MIT",