@grepp/detect-gpu 5.0.70 → 5.0.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # Forked from [pmndrs/detect-gpu](https://github.com/pmndrs/detect-gpu)
2
+
1
3
  # Detect GPU
2
4
 
3
5
  [![npm version](https://badge.fury.io/js/detect-gpu.svg)](https://badge.fury.io/js/detect-gpu)
@@ -50,7 +52,7 @@ getGPUTier({
50
52
  /**
51
53
  * URL of directory where benchmark data is hosted.
52
54
  *
53
- * @default https://unpkg.com/detect-gpu@{version}/dist/benchmarks
55
+ * @default https://@grepp/unpkg.com/detect-gpu@{version}/dist/benchmarks
54
56
  */
55
57
  benchmarksURL?: string;
56
58
  /**
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@grepp/detect-gpu",
3
- "version": "5.0.70",
3
+ "version": "5.0.72",
4
4
  "description": "Classify GPU's based on their benchmark score in order to provide an adaptive experience.",
5
5
  "author": "Tim van Scherpenzeel",
6
6
  "license": "MIT",
7
7
  "main": "dist/detect-gpu.umd.js",
8
8
  "module": "dist/detect-gpu.esm.js",
9
9
  "types": "dist/src/index.d.ts",
10
- "homepage": "https://github.com/pmndrs/detect-gpu#readme",
10
+ "homepage": "https://github.com/grepp/detect-gpu#readme",
11
11
  "bugs": {
12
- "url": "https://github.com/pmndrs/detect-gpu/issues"
12
+ "url": "https://github.com/grepp/detect-gpu/issues"
13
13
  },
14
14
  "repository": {
15
15
  "type": "git",
@@ -99,5 +99,6 @@
99
99
  }
100
100
  ]
101
101
  }
102
- }
102
+ },
103
+ "packageManager": "yarn@1.22.22"
103
104
  }