-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: get artefact and metafile paths from Serverless API #2
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { exec } from 'child_process'; | ||
import { readdirSync, statSync } from 'fs'; | ||
import { join } from 'path'; | ||
import { join, parse } from 'path'; | ||
import { FunctionDefinitionHandler } from 'serverless'; | ||
|
||
import type { ServerlessAnalyzeBundlePlugin } from './serverlessAnalyzeBundle'; | ||
|
||
|
@@ -43,12 +44,10 @@ async function bundleVisualizer(this: ServerlessAnalyzeBundlePlugin): Promise<vo | |
if (functionName === undefined) { | ||
return; | ||
} | ||
const slsFunction = this.serverless.service.getFunction(functionName); | ||
|
||
const functionZipName = this.serverless.service | ||
.getAllFunctionsNames() | ||
.find(fullFunctionName => fullFunctionName.endsWith(functionName)); | ||
|
||
if (functionZipName === undefined) { | ||
const fullZipPath = slsFunction.package?.artifact; | ||
if (fullZipPath === undefined) { | ||
this.serverless.cli.log( | ||
`🤯 Analyze failed: function ${functionName} was not found`, | ||
'ServerlessAnalyzeBundlePlugin', | ||
|
@@ -57,6 +56,7 @@ async function bundleVisualizer(this: ServerlessAnalyzeBundlePlugin): Promise<vo | |
|
||
return; | ||
} | ||
const functionZipName = parse(fullZipPath).base; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just the file and ext, e.g. |
||
|
||
this.serverless.cli.log(`⏳ Analyzing function ${functionName}`, 'ServerlessAnalyzeBundlePlugin'); | ||
|
||
|
@@ -65,10 +65,22 @@ async function bundleVisualizer(this: ServerlessAnalyzeBundlePlugin): Promise<vo | |
|
||
await pExec(`unzip .serverless/${functionZipName} -d ${TEMP_DIR_LOCATION}`); | ||
|
||
const test = getAllFiles(`${TEMP_DIR_LOCATION}`); | ||
const metafileName = test.filter( | ||
fileName => fileName.includes(`/${functionName}/`) && fileName.endsWith('-meta.json'), | ||
const allFiles = getAllFiles(`${TEMP_DIR_LOCATION}`); | ||
const handlerPath = (slsFunction as FunctionDefinitionHandler).handler.split('.')[0]; | ||
const metafileName = allFiles.filter( | ||
fileName => fileName.includes(handlerPath) && fileName.endsWith('-meta.json'), | ||
)[0]; | ||
|
||
if (!metafileName) { | ||
this.serverless.cli.log( | ||
`🤯 Analyze failed: function ${functionName} metadata was not found`, | ||
'ServerlessAnalyzeBundlePlugin', | ||
{ color: 'red' }, | ||
); | ||
|
||
return; | ||
} | ||
Comment on lines
+74
to
+82
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add explicit error handler here, since I was getting uncaught errors prior to fixing this. |
||
|
||
await pExec( | ||
[ | ||
'node_modules/.bin/esbuild-visualizer', | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
something like
/home/me/projects/foo/.serverless/myfunction.zip