Skip to content

Commit 6d2566e

Browse files
committed
content: Add a "vendor" glossary entry
1 parent e1bd658 commit 6d2566e

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

content/en/quick-reference/glossary/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
title: build
33
---
44

5-
To _build_ a site is to generate HTML files and assets such as images, CSS files, and JavaScript files. The build process includes rendering and resource transformations.
5+
To _build_ (verb) a site is to generate HTML files and assets such as images, CSS files, and JavaScript files. The build process includes rendering and resource transformations.

content/en/quick-reference/glossary/chain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
title: chain
33
---
44

5-
To _chain_ is to connect one or more [_identifiers_](g) with a dot. An identifier can represent a [_method_](g), [_object_](g), or [_field_](g). For example, `.Site.Params.author.name` or `.Date.UTC.Hour`.
5+
To _chain_ (verb) is to connect one or more [_identifiers_](g) with a dot. An identifier can represent a [_method_](g), [_object_](g), or [_field_](g). For example, `.Site.Params.author.name` or `.Date.UTC.Hour`.

content/en/quick-reference/glossary/marshal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ title: marshal
33
reference: /functions/transform/remarshal/
44
---
55

6-
To _marshal_ is to transform a data structure into a serialized object. For example, transforming a [_map_](g) into a JSON string.
6+
To _marshal_ (verb) is to transform a data structure into a serialized object. For example, transforming a [_map_](g) into a JSON string.

content/en/quick-reference/glossary/paginate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
title: paginate
33
---
44

5-
To _paginate_ is to split a list page into two or more subsets.
5+
To _paginate_ (verb) is to split a list page into two or more subsets.

content/en/quick-reference/glossary/unmarshal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ title: unmarshal
33
reference: /functions/transform/unmarshal/
44
---
55

6-
To _unmarshal_ is to transform a serialized object into a data structure. For example, transforming a JSON file into a [_map_](g) that you can access within a template.
6+
To _unmarshal_ (verb) is to transform a serialized object into a data structure. For example, transforming a JSON file into a [_map_](g) that you can access within a template.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: vendor
3+
---
4+
5+
To _vendor_ (verb) in a software context is the process of including the source code of third-party dependencies directly within your own project's repository, rather than downloading them on the fly from an external package manager.
6+
7+
When you are asked to "vendor the dependencies into the project root," you are being told to move those external libraries from a temporary cache into a dedicated folder that gets committed to your version control system.

content/en/quick-reference/glossary/walk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
title: walk
33
---
44

5-
To _walk_ is to recursively traverse a nested data structure. For example, rendering a multilevel menu.
5+
To _walk_ (verb) is to recursively traverse a nested data structure. For example, rendering a multilevel menu.

0 commit comments

Comments
 (0)