当方初学者です。
FirebaseのCloud functionsのデプロイの際に、
以下のようなログが出てデプロイができません。(firebaseコンソールFunctionsのログ)
{"@type":"type.googleapis.com/google.cloud.audit.AuditLog","status":{"code":3,"message":"Build failed: yarn install v1.22.4\n[1/5] Validating package.json...\n[2/5] Resolving packages...\nerror Your lockfile needs to be updated, but yarn was run with `--frozen-lockfile`.\ninfo Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.; Error ID: 98e389b6"},"authenticationInfo":{"principalEmail":"メールアドレス"},"serviceName":"cloudfunctions.googleapis.com","methodName":"google.cloud.functions.v1.CloudFunctionsService.CreateFunction","resourceName":"projects/アプリ名/locations/us-central1/functions/helloWorld"}
1回目はhelloWorld関数のデプロイに成功できたのですが、
他の関数のデプロイに失敗し、改めてhelloWorld関数を試したのですが、失敗しました。
export const helloWorld = functions.https.onRequest((request, response) => { functions.logger.info('Hello logs!', { structuredData: true }); response.send('Hello from Firebase!'); });
(ちなみにalgoliaのデプロイでつまづき、今に至っています。)
対処法はございますでしょうか?
環境:reactnative,node v14
よろしくお願いいたします。
あなたの回答
tips
プレビュー