create-z3 0.0.21 → 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/dist/index.js
CHANGED
|
@@ -1808,11 +1808,11 @@ function generateAuthProvidersBlock(oauthProviders, emailPasswordEnabled) {
|
|
|
1808
1808
|
throw new Error(`Unknown OAuth provider: ${providerId}`);
|
|
1809
1809
|
}
|
|
1810
1810
|
const configLines = [
|
|
1811
|
-
`clientId: process.env.${provider.envPrefix}_CLIENT_ID
|
|
1812
|
-
`clientSecret: process.env.${provider.envPrefix}_CLIENT_SECRET
|
|
1811
|
+
`clientId: process.env.${provider.envPrefix}_CLIENT_ID!,`,
|
|
1812
|
+
`clientSecret: process.env.${provider.envPrefix}_CLIENT_SECRET!,`
|
|
1813
1813
|
];
|
|
1814
1814
|
if (providerId === "figma") {
|
|
1815
|
-
configLines.push(`clientKey: process.env.FIGMA_CLIENT_KEY
|
|
1815
|
+
configLines.push(`clientKey: process.env.FIGMA_CLIENT_KEY!,`);
|
|
1816
1816
|
}
|
|
1817
1817
|
return `${providerId}: {
|
|
1818
1818
|
${configLines.join("\n ")}
|
package/package.json
CHANGED