From 287fcf2468ffcfbdc859fc14c71a89f69e7de52c Mon Sep 17 00:00:00 2001 From: Jaydon Peng Date: Tue, 19 Oct 2021 14:13:31 +0800 Subject: [PATCH 1/4] Update package.json to include the repository Hi there! This change adds the repository property to your package.json file(s). Having this available provides a number of benefits to security tooling. For example, it allows for greater trust by checking for signed commits, contributors to a release and validating history with the project. It also allows for comparison between the source code and the published artifact in order to detect attacks on authors during the publication process. We validate that we're making a PR against the correct repository by comparing the metadata for the published artifact on [npmjs.com](www.npmjs.com) against the metadata in the package.json file in the repository. This change is provided by a team at Microsoft -- we're happy to answer any questions you may have. (Members of this team include [@s-tuli](https://github.com/s-tuli), [@iarna](https://github.com/iarna), [@v-rr](https://github.com/v-rr), [@v-jiepeng](https://github.com/v-jiepeng), [@v-zhzhou](https://github.com/v-zhzhou) and [@v-gjy](https://github.com/v-gjy)). If you would prefer that we not make these sorts of PRs to projects you maintain, please just say. If you'd like to learn more about what we're doing here, we've prepared a document talking about both this project and some of our other activities around supply chain security here: [microsoft/Secure-Supply-Chain](https://github.com/microsoft/Secure-Supply-Chain) This PR provides repository metadata for the following packages: * docusaurus-plugin-sass --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 88f3764..9b51fb4 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,10 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, + "repository": { + "type": "git", + "url": "https://github.com/rlamana/docusaurus-plugin-sass.git", + }, "homepage": "https://github.com/rlamana/docusaurus-plugin-sass", "keywords": [ "docusaurus", From 92a48849256718e8818f0962132cff9a3cb9008e Mon Sep 17 00:00:00 2001 From: "Queue.ri" Date: Thu, 16 Dec 2021 19:15:02 +0900 Subject: [PATCH 2/4] fix(deps): Support docusaurus v2 beta --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9b51fb4..a2f1ea8 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "sass-loader": "^10.1.1" }, "peerDependencies": { - "@docusaurus/core": "^2.0.0", + "@docusaurus/core": "^2.0.0-beta", "sass": "^1.30.0" }, "scripts": { From d7cb7fd88d6585db109c8cd5d8b35a2d0b71f8d4 Mon Sep 17 00:00:00 2001 From: "Queue.ri" Date: Thu, 16 Dec 2021 19:36:03 +0900 Subject: [PATCH 3/4] fix(deps): Remove comma in git repository url --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a2f1ea8..a7f1080 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/rlamana/docusaurus-plugin-sass.git", + "url": "https://github.com/rlamana/docusaurus-plugin-sass.git" }, "homepage": "https://github.com/rlamana/docusaurus-plugin-sass", "keywords": [ From 050968b50aba41f58568b785837652ba3219a1e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ram=C3=B3n=20Lamana?= Date: Mon, 24 Jan 2022 01:43:55 +0100 Subject: [PATCH 4/4] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a7f1080..69c770f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "docusaurus-plugin-sass", - "version": "0.2.1", + "version": "0.2.2", "description": "Docusaurus plugin to provide support for SASS/SCSS", "main": "docusaurus-plugin-sass.js", "dependencies": {