diff --git a/README.md b/README.md
index eaffa5b8..b108ebe2 100644
--- a/README.md
+++ b/README.md
@@ -32,13 +32,13 @@ Install `carbon-components-svelte` as a development dependency.
```sh
# Yarn
-yarn add -D carbon-components-svelte
+yarn add carbon-components-svelte
# npm
-npm i -D carbon-components-svelte
+npm i carbon-components-svelte
# pnpm
-pnpm i -D carbon-components-svelte
+pnpm i carbon-components-svelte
```
## Usage
diff --git a/docs/src/pages/components/CodeSnippet.svx b/docs/src/pages/components/CodeSnippet.svx
index b5d78490..c0880fa5 100644
--- a/docs/src/pages/components/CodeSnippet.svx
+++ b/docs/src/pages/components/CodeSnippet.svx
@@ -36,7 +36,7 @@ You can override the default copy functionality with your own implementation. Se
## Default (single-line)
-
+
## Overriding copy functionality
@@ -50,7 +50,7 @@ In this example, we use the open source module [clipboard-copy](https://github.c
To prevent text from being copied entirely, pass a no-op function to the `copy` prop.
- {}} />
+ {}} />
## Inline
@@ -104,7 +104,7 @@ Use the `showMoreText` and `showLessText` props to override the default "Show mo
The `disabled` prop applies only to the `"single"` and `"multi"` code snippet types.
-
+
diff --git a/docs/src/pages/framed/CodeSnippet/CodeSnippetOverride.svelte b/docs/src/pages/framed/CodeSnippet/CodeSnippetOverride.svelte
index 9314a6b5..f447cb04 100644
--- a/docs/src/pages/framed/CodeSnippet/CodeSnippetOverride.svelte
+++ b/docs/src/pages/framed/CodeSnippet/CodeSnippetOverride.svelte
@@ -4,6 +4,6 @@
diff --git a/docs/src/pages/index.svelte b/docs/src/pages/index.svelte
index 1b3212f7..c9877951 100644
--- a/docs/src/pages/index.svelte
+++ b/docs/src/pages/index.svelte
@@ -21,9 +21,9 @@
metatags.description =
"The Svelte implementation of the Carbon Design System featuring UI components, icons, pictograms, and charts.";
- const installYarn = "yarn add -D carbon-components-svelte";
- const installNpm = "npm i -D carbon-components-svelte";
- const installPnpm = "pnpm i -D carbon-components-svelte";
+ const installYarn = "yarn add carbon-components-svelte";
+ const installNpm = "npm i carbon-components-svelte";
+ const installPnpm = "pnpm i carbon-components-svelte";
const themes = {
white: "White",
g10: "Gray 10",
diff --git a/tests/CodeSnippet.test.svelte b/tests/CodeSnippet.test.svelte
index a695212e..40853a24 100644
--- a/tests/CodeSnippet.test.svelte
+++ b/tests/CodeSnippet.test.svelte
@@ -17,5 +17,5 @@
on:expand
on:collapse
>
- yarn add -D carbon-components-svelte
+ yarn add carbon-components-svelte
diff --git a/tests/CopyableCodeSnippet.test.svelte b/tests/CopyableCodeSnippet.test.svelte
index 7fdf68ca..8c3087b5 100644
--- a/tests/CopyableCodeSnippet.test.svelte
+++ b/tests/CopyableCodeSnippet.test.svelte
@@ -1,6 +1,6 @@