serverless-plugin-module-registry 1.0.12-alpha.6 → 1.0.13
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/index.js
CHANGED
|
@@ -17883,9 +17883,9 @@ async function runServerlessDeploy(cwd, params, logger) {
|
|
|
17883
17883
|
"--param",
|
|
17884
17884
|
`tableName=${params.tableName}`,
|
|
17885
17885
|
"--param",
|
|
17886
|
-
`policyPrefix=${params.policyPrefix}`,
|
|
17886
|
+
`policyPrefix=${params.policyPrefix || "none"}`,
|
|
17887
17887
|
"--param",
|
|
17888
|
-
`accountId=${params.accountId}`
|
|
17888
|
+
`accountId=${params.accountId || "auto"}`
|
|
17889
17889
|
];
|
|
17890
17890
|
const args = isNpx ? ["serverless@4", ...slsArgs] : slsArgs;
|
|
17891
17891
|
logger.info(` Using: ${serverlessBin}${isNpx ? " serverless@4" : ""}`);
|