module-replacements 2.3.2 → 2.4.0
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.
- package/README.md +2 -2
- package/manifests/native.json +8 -0
- package/manifests/preferred.json +36 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Some tools consume the lists of modules in this repository:
|
|
|
24
24
|
|
|
25
25
|
## Manifests
|
|
26
26
|
|
|
27
|
-
The manifests can be used via the `module-replacements`
|
|
27
|
+
The manifests can be used via the `module-replacements` npm package.
|
|
28
28
|
|
|
29
29
|
We provide three manifests:
|
|
30
30
|
|
|
@@ -35,7 +35,7 @@ We provide three manifests:
|
|
|
35
35
|
|
|
36
36
|
### Usage
|
|
37
37
|
|
|
38
|
-
You can install this package via
|
|
38
|
+
You can install this package via npm:
|
|
39
39
|
|
|
40
40
|
```sh
|
|
41
41
|
npm i -S module-replacements
|
package/manifests/native.json
CHANGED
|
@@ -512,6 +512,14 @@
|
|
|
512
512
|
"mdnPath": "Global_Objects/Array/indexOf",
|
|
513
513
|
"category": "native"
|
|
514
514
|
},
|
|
515
|
+
{
|
|
516
|
+
"type": "native",
|
|
517
|
+
"moduleName": "inherits",
|
|
518
|
+
"nodeVersion": "6.0.0",
|
|
519
|
+
"replacement": "Use native class syntax",
|
|
520
|
+
"mdnPath": "Classes/extends",
|
|
521
|
+
"category": "native"
|
|
522
|
+
},
|
|
515
523
|
{
|
|
516
524
|
"type": "native",
|
|
517
525
|
"moduleName": "is-nan",
|
package/manifests/preferred.json
CHANGED
|
@@ -54,6 +54,30 @@
|
|
|
54
54
|
"docPath": "eslint-plugin-react",
|
|
55
55
|
"category": "preferred"
|
|
56
56
|
},
|
|
57
|
+
{
|
|
58
|
+
"type": "documented",
|
|
59
|
+
"moduleName": "fast-glob",
|
|
60
|
+
"docPath": "glob",
|
|
61
|
+
"category": "preferred"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "documented",
|
|
65
|
+
"moduleName": "glob",
|
|
66
|
+
"docPath": "glob",
|
|
67
|
+
"category": "preferred"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"type": "documented",
|
|
71
|
+
"moduleName": "globby",
|
|
72
|
+
"docPath": "glob",
|
|
73
|
+
"category": "preferred"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"type": "documented",
|
|
77
|
+
"moduleName": "invariant",
|
|
78
|
+
"docPath": "invariant",
|
|
79
|
+
"category": "preferred"
|
|
80
|
+
},
|
|
57
81
|
{
|
|
58
82
|
"type": "documented",
|
|
59
83
|
"moduleName": "is-builtin-module",
|
|
@@ -2064,6 +2088,12 @@
|
|
|
2064
2088
|
"docPath": "rimraf",
|
|
2065
2089
|
"category": "preferred"
|
|
2066
2090
|
},
|
|
2091
|
+
{
|
|
2092
|
+
"type": "documented",
|
|
2093
|
+
"moduleName": "shortid",
|
|
2094
|
+
"docPath": "shortid",
|
|
2095
|
+
"category": "preferred"
|
|
2096
|
+
},
|
|
2067
2097
|
{
|
|
2068
2098
|
"type": "documented",
|
|
2069
2099
|
"moduleName": "sort-object",
|
|
@@ -2076,6 +2106,12 @@
|
|
|
2076
2106
|
"docPath": "tempy",
|
|
2077
2107
|
"category": "preferred"
|
|
2078
2108
|
},
|
|
2109
|
+
{
|
|
2110
|
+
"type": "documented",
|
|
2111
|
+
"moduleName": "traverse",
|
|
2112
|
+
"docPath": "traverse",
|
|
2113
|
+
"category": "preferred"
|
|
2114
|
+
},
|
|
2079
2115
|
{
|
|
2080
2116
|
"type": "documented",
|
|
2081
2117
|
"moduleName": "underscore",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "module-replacements",
|
|
3
3
|
"description": "This package provides a set of manifests which each define a mapping of JS modules to their suggested replacements.",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.4.0",
|
|
5
5
|
"main": "./dist/commonjs/main.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "npm run clean && npm run build:types",
|