瀏覽代碼

Fix letter case in repo URL

The repo url in `package.json` is incorrectly using uppercase in the origanization name, fix that.
silverwind 3 年之前
父節點
當前提交
21b51b4830
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      package.json

+ 3 - 3
package.json

@@ -13,7 +13,7 @@
   },
   },
   "repository": {
   "repository": {
     "type": "git",
     "type": "git",
-    "url": "git+https://github.com/Microsoft/monaco-editor-webpack-plugin.git"
+    "url": "git+https://github.com/microsoft/monaco-editor-webpack-plugin.git"
   },
   },
   "keywords": [
   "keywords": [
     "webpack",
     "webpack",
@@ -24,9 +24,9 @@
   "author": "Microsoft Corporation",
   "author": "Microsoft Corporation",
   "license": "MIT",
   "license": "MIT",
   "bugs": {
   "bugs": {
-    "url": "https://github.com/Microsoft/monaco-editor-webpack-plugin/issues"
+    "url": "https://github.com/microsoft/monaco-editor-webpack-plugin/issues"
   },
   },
-  "homepage": "https://github.com/Microsoft/monaco-editor-webpack-plugin#readme",
+  "homepage": "https://github.com/microsoft/monaco-editor-webpack-plugin#readme",
   "peerDependencies": {
   "peerDependencies": {
     "webpack": "^4.5.0 || 5.x",
     "webpack": "^4.5.0 || 5.x",
     "monaco-editor": "0.25.x || 0.26.x || 0.27.x || 0.28.x"
     "monaco-editor": "0.25.x || 0.26.x || 0.27.x || 0.28.x"