]> source.dussan.org Git - sonarqube.git/commitdiff
[NO JIRA] Validate package.json format
authorRevanshu Paliwal <revanshu.paliwal@sonarsource.com>
Mon, 10 Oct 2022 13:32:39 +0000 (15:32 +0200)
committersonartech <sonartech@sonarsource.com>
Thu, 13 Oct 2022 20:03:18 +0000 (20:03 +0000)
server/sonar-web/package.json
server/sonar-web/scripts/validate-package-json.js [new file with mode: 0644]
server/sonar-web/yarn.lock

index 34541da1e248c3296e321ffaef40b586373fe7e8..5ac900ebfc5eba474b7f35dd27696459dae6de10 100644 (file)
@@ -40,7 +40,7 @@
     "rehype-slug": "3.0.0",
     "remark": "11.0.2",
     "remark-custom-blocks": "2.5.1",
-    "remark-react": "7",
+    "remark-react": "7.0.1",
     "remark-rehype": "6.0.0",
     "unist-util-visit": "2.0.2",
     "valid-url": "1.0.9"
     "lint-report": "eslint --ext js,ts,tsx -f json -o eslint-report/eslint-report.json src/main/js",
     "lint-report-ci": "yarn install --immutable && eslint --ext js,ts,tsx -f json -o eslint-report/eslint-report.json src/main/js  || yarn lint",
     "ts-check": "tsc --noEmit",
-    "validate": "yarn lint && yarn ts-check && yarn format-check && yarn test",
-    "validate-ci": "yarn install --immutable && yarn test --coverage --maxWorkers=4 --ci",
+    "validate": "yarn dep-check && yarn lint && yarn ts-check && yarn format-check && yarn test",
+    "validate-ci": "yarn install --immutable && yarn dep-check && yarn test --coverage --maxWorkers=4 --ci",
     "check-ci": "yarn install --immutable && yarn ts-check && yarn format-check",
-    "update-cwes": "node scripts/update-cwes.js"
+    "update-cwes": "node scripts/update-cwes.js",
+    "dep-check": "node scripts/validate-package-json.js"
   },
   "engines": {
     "node": ">=8"
diff --git a/server/sonar-web/scripts/validate-package-json.js b/server/sonar-web/scripts/validate-package-json.js
new file mode 100644 (file)
index 0000000..23fb728
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2022 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+const { dependencies, devDependencies } = require('../package.json');
+
+const dependenciesArray = Object.entries(dependencies);
+const devDependenciesArray = Object.entries(devDependencies);
+
+const violatingDependencies = [...dependenciesArray, ...devDependenciesArray].filter(
+  ([id, version]) => !/^\d+\.\d+\.\d+$/.test(version)
+);
+
+if (violatingDependencies.length > 0) {
+  throw new Error(
+    `Following dependencies must be locked to an exact version:
+${violatingDependencies.map(([id, version]) => ` - "${id}": "${version}"`).join('\n')}
+`
+  );
+}
index 4045263e11a57067cbdb0bab6195eaa60555803b..7e7d9be455bb0951e1a44c571662be858a137072 100644 (file)
@@ -2406,7 +2406,7 @@ __metadata:
     rehype-slug: 3.0.0
     remark: 11.0.2
     remark-custom-blocks: 2.5.1
-    remark-react: 7
+    remark-react: 7.0.1
     remark-rehype: 6.0.0
     testing-library-selector: 0.2.1
     typescript: 4.6.3
@@ -9431,7 +9431,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"remark-react@npm:7":
+"remark-react@npm:7.0.1":
   version: 7.0.1
   resolution: "remark-react@npm:7.0.1"
   dependencies: