Skip to content

Commit

Permalink
chore: update some code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh committed Jul 16, 2024
1 parent 1d49fff commit 4817063
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/build/plugin-context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class PluginContext {
* Absolute path of the directory that will be deployed to the blob store
* frameworks api: `.netlify/v1/blobs/deploy`
* region aware: `.netlify/deploy/v1/blobs/deploy`
* default: `.netlify/blobs/deploy`
* legacy/default: `.netlify/blobs/deploy`
*/
get blobDir(): string {
switch (this.blobsStrategy) {
Expand Down Expand Up @@ -210,7 +210,8 @@ export class PluginContext {

/**
* Absolute path of the directory containing the files for the serverless lambda function
* `.netlify/functions-internal`
* frameworks api: `.netlify/v1/functions`
* legacy/default: `.netlify/functions-internal`
*/
get serverFunctionsDir(): string {
if (this.useFrameworksAPI) {
Expand Down Expand Up @@ -241,7 +242,8 @@ export class PluginContext {

/**
* Absolute path of the directory containing the files for deno edge functions
* `.netlify/edge-functions`
* frameworks api: `.netlify/v1/edge-functions`
* legacy/default: `.netlify/edge-functions`
*/
get edgeFunctionsDir(): string {
if (this.useFrameworksAPI) {
Expand Down

0 comments on commit 4817063

Please sign in to comment.