From 487bed47e604742a9d5c730f1825281ddbfd0b12 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 2 Jul 2024 11:27:56 +0100 Subject: [PATCH] Update packages.md (#5717) add frontmatter to package doc to abide by best practices. also discussed in internal slack thread: https://dbt-labs.slack.com/archives/C02NCQ9483C/p1719888529356019 --- website/docs/docs/build/packages.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/docs/docs/build/packages.md b/website/docs/docs/build/packages.md index b3325ec8586..9576cb46ecf 100644 --- a/website/docs/docs/build/packages.md +++ b/website/docs/docs/build/packages.md @@ -1,6 +1,8 @@ --- title: "Packages" id: "packages" +description: "Discover how dbt packages help modularize code and transform data efficiently. Learn about git packages, hub packages, private packages, and advanced package configurations." +keywords: [dbt packages, dbt package, dbt private package, dbt data transformation, dbt libraries, how to add a package dbt project] --- @@ -87,7 +89,7 @@ Beginning in v1.7, `dbt deps` "pins" each package by default. See ["Pinning pack Where possible, we recommend installing packages via dbt Hub, since this allows dbt to handle duplicate dependencies. This is helpful in situations such as: -* Your project uses both the dbt-utils and Snowplow packages; and the Snowplow package _also_ uses the dbt-utils package. +* Your project uses both the dbt-utils and Snowplow packages, and the Snowplow package _also_ uses the dbt-utils package. * Your project uses both the Snowplow and Stripe packages, both of which use the dbt-utils package. In comparison, other package installation methods are unable to handle the duplicate dbt-utils package.