From 1f8b4adc5d49148f79f60a394114e1f3e5db4272 Mon Sep 17 00:00:00 2001 From: Etheryen Date: Sat, 18 Jun 2022 15:48:45 +0200 Subject: [PATCH] docs(guides): remove trailing comma in package.json --- src/content/guides/getting-started.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/content/guides/getting-started.mdx b/src/content/guides/getting-started.mdx index 23a9dd42951c..5f0d559f1a1d 100644 --- a/src/content/guides/getting-started.mdx +++ b/src/content/guides/getting-started.mdx @@ -26,6 +26,7 @@ contributors: - anshumanv - d3lm - snitin315 + - Etheryen --- Webpack is used to compile JavaScript modules. Once [installed](/guides/installation), you can interact with webpack either from its [CLI](/api/cli) or [API](/api/node). If you're still new to webpack, please read through the [core concepts](/concepts) and [this comparison](/comparison) to learn why you might use it over the other tools that are out in the community. @@ -118,7 +119,7 @@ T> If you want to learn more about the inner workings of `package.json`, then we "license": "MIT", "devDependencies": { "webpack": "^5.38.1", - "webpack-cli": "^4.7.2", + "webpack-cli": "^4.7.2" } } ```