From f6cebc75a8dcf2f5c697fdf5fc2e14cb639704dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Oct 2024 05:43:05 +0000 Subject: [PATCH 1/2] deps: bump @primer/octicons-react in the dependency-updates group Bumps the dependency-updates group with 1 update: [@primer/octicons-react](https://github.com/primer/octicons). Updates `@primer/octicons-react` from 19.11.0 to 19.12.0 - [Release notes](https://github.com/primer/octicons/releases) - [Changelog](https://github.com/primer/octicons/blob/main/CHANGELOG.md) - [Commits](https://github.com/primer/octicons/compare/v19.11.0...v19.12.0) --- updated-dependencies: - dependency-name: "@primer/octicons-react" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependency-updates ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index d02f7e16c0c..145cabc5dbf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7769,9 +7769,9 @@ } }, "node_modules/@primer/octicons-react": { - "version": "19.11.0", - "resolved": "https://registry.npmjs.org/@primer/octicons-react/-/octicons-react-19.11.0.tgz", - "integrity": "sha512-8PpCz7cpYY2GCGnJ/G9UARh9PH4C290l31YjriQHZ+WsagE37ntKXhFwq+s4OWoRqZ7fA7HeU81zGDFHQi0VKg==", + "version": "19.12.0", + "resolved": "https://registry.npmjs.org/@primer/octicons-react/-/octicons-react-19.12.0.tgz", + "integrity": "sha512-xnVzFmeWqqiiv9XYZ0hrlytAlCrSZ+HM3JrRzmD/LiPgdyEhyG/qb/ewMukiDoF9Ckwy4rkd1zuDd3KAx4DIAw==", "engines": { "node": ">=8" }, From 78318d8e81b5c6dfab626c3c42aa04f1b800b673 Mon Sep 17 00:00:00 2001 From: Gar Date: Tue, 15 Oct 2024 07:20:22 -0700 Subject: [PATCH 2/2] chore: fix linting --- .../creating-a-package-json-file.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/packages-and-modules/contributing-packages-to-the-registry/creating-a-package-json-file.mdx b/content/packages-and-modules/contributing-packages-to-the-registry/creating-a-package-json-file.mdx index e6b775a1ccc..5d1eba30cb6 100644 --- a/content/packages-and-modules/contributing-packages-to-the-registry/creating-a-package-json-file.mdx +++ b/content/packages-and-modules/contributing-packages-to-the-registry/creating-a-package-json-file.mdx @@ -25,7 +25,7 @@ A `package.json` file: A `package.json` file must contain `"name"` and `"version"` fields. -The `"name"` field contains your package's name and *must* be lowercase *without* any spaces. May contain _hyphens_, _dots_, and _underscores_. +The `"name"` field contains your package's name and _must_ be lowercase _without_ any spaces. May contain _hyphens_, _dots_, and _underscores_. The `"version"` field must be in the form `x.x.x` and follow the [semantic versioning guidelines][semver].