fast-equals 2.0.1 → 3.0.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/CHANGELOG.md +49 -3
- package/README.md +58 -37
- package/dist/fast-equals.cjs.js +106 -213
- package/dist/fast-equals.cjs.js.map +1 -1
- package/dist/fast-equals.esm.js +106 -213
- package/dist/fast-equals.esm.js.map +1 -1
- package/dist/fast-equals.js +108 -215
- package/dist/fast-equals.js.map +1 -1
- package/dist/fast-equals.min.js +1 -1
- package/dist/fast-equals.mjs +106 -213
- package/dist/fast-equals.mjs.map +1 -1
- package/index.d.ts +10 -1
- package/package.json +40 -41
package/package.json
CHANGED
|
@@ -6,49 +6,47 @@
|
|
|
6
6
|
},
|
|
7
7
|
"description": "A blazing fast equality comparison, either shallow or deep",
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@
|
|
10
|
-
"@types/
|
|
11
|
-
"@types/
|
|
12
|
-
"@types/
|
|
13
|
-
"@types/
|
|
14
|
-
"@
|
|
15
|
-
"@typescript-eslint/
|
|
9
|
+
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
10
|
+
"@types/jest": "^27.4.0",
|
|
11
|
+
"@types/lodash": "^4.14.178",
|
|
12
|
+
"@types/node": "^17.0.17",
|
|
13
|
+
"@types/ramda": "^0.27.64",
|
|
14
|
+
"@types/react": "^17.0.39",
|
|
15
|
+
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
16
|
+
"@typescript-eslint/parser": "^5.11.0",
|
|
16
17
|
"benchee": "^1.1.0",
|
|
17
|
-
"cli-
|
|
18
|
+
"cli-table3": "^0.6.1",
|
|
18
19
|
"decircularize": "^1.0.0",
|
|
19
20
|
"deep-eql": "^4.0.0",
|
|
20
|
-
"deep-equal": "^
|
|
21
|
-
"eslint": "^
|
|
22
|
-
"eslint-config-airbnb": "^
|
|
23
|
-
"eslint-
|
|
24
|
-
"eslint-plugin-
|
|
25
|
-
"eslint-plugin-
|
|
26
|
-
"eslint-plugin
|
|
27
|
-
"fast-deep-equal": "^
|
|
28
|
-
"fs-extra": "^
|
|
29
|
-
"html-webpack-plugin": "^
|
|
21
|
+
"deep-equal": "^2.0.5",
|
|
22
|
+
"eslint": "^8.9.0",
|
|
23
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
24
|
+
"eslint-plugin-import": "^2.25.4",
|
|
25
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
26
|
+
"eslint-plugin-react": "^7.28.0",
|
|
27
|
+
"eslint-webpack-plugin": "^3.1.1",
|
|
28
|
+
"fast-deep-equal": "^3.1.3",
|
|
29
|
+
"fs-extra": "^10.0.0",
|
|
30
|
+
"html-webpack-plugin": "^5.5.0",
|
|
30
31
|
"in-publish": "^2.0.0",
|
|
31
|
-
"jest": "^
|
|
32
|
-
"lodash": "^4.17.
|
|
32
|
+
"jest": "^27.5.1",
|
|
33
|
+
"lodash": "^4.17.21",
|
|
33
34
|
"nano-equal": "^2.0.2",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"react": "^
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"rollup": "^
|
|
40
|
-
"rollup-plugin-
|
|
41
|
-
"rollup-plugin-terser": "^5.1.1",
|
|
42
|
-
"rollup-plugin-typescript2": "^0.22.1",
|
|
35
|
+
"react": "^17.0.2",
|
|
36
|
+
"react-dom": "^17.0.2",
|
|
37
|
+
"react-fast-compare": "^3.2.0",
|
|
38
|
+
"release-it": "^14.12.4",
|
|
39
|
+
"rollup": "^2.67.2",
|
|
40
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
41
|
+
"rollup-plugin-typescript2": "^0.31.2",
|
|
43
42
|
"shallow-equal-fuzzy": "^0.0.2",
|
|
44
|
-
"
|
|
45
|
-
"ts-
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"webpack": "^4.
|
|
50
|
-
"webpack-
|
|
51
|
-
"webpack-dev-server": "^3.1.14"
|
|
43
|
+
"ts-jest": "^27.1.3",
|
|
44
|
+
"ts-loader": "^9.2.6",
|
|
45
|
+
"typescript": "^4.5.5",
|
|
46
|
+
"underscore": "^1.13.2",
|
|
47
|
+
"webpack": "^5.68.0",
|
|
48
|
+
"webpack-cli": "^4.9.2",
|
|
49
|
+
"webpack-dev-server": "^4.7.4"
|
|
52
50
|
},
|
|
53
51
|
"homepage": "https://github.com/planttheidea/fast-equals#readme",
|
|
54
52
|
"keywords": [
|
|
@@ -69,20 +67,21 @@
|
|
|
69
67
|
"scripts": {
|
|
70
68
|
"benchmark": "npm run dist && node benchmark/index.js",
|
|
71
69
|
"build": "NODE_ENV=production rollup -c",
|
|
72
|
-
"dev": "NODE_ENV=development webpack
|
|
70
|
+
"dev": "NODE_ENV=development webpack serve --progress --config=webpack/webpack.config.js",
|
|
73
71
|
"dist": "rimraf dist && npm run build",
|
|
74
72
|
"lint": "eslint src/*.ts",
|
|
75
73
|
"lint:fix": "npm run lint -- --fix",
|
|
76
74
|
"start": "npm run dev",
|
|
77
75
|
"prepublish": "if in-publish; then npm run prepublish:compile; fi",
|
|
78
|
-
"prepublish:compile": "npm run lint && npm run test
|
|
76
|
+
"prepublish:compile": "npm run typecheck && npm run lint && npm run test && npm run dist",
|
|
79
77
|
"release": "release-it",
|
|
80
78
|
"release:beta": "release-it --config=.release-it.beta.json",
|
|
81
79
|
"test": "NODE_PATH=. jest",
|
|
82
80
|
"test:coverage": "npm test -- --coverage",
|
|
83
|
-
"test:watch": "npm test -- --watch"
|
|
81
|
+
"test:watch": "npm test -- --watch",
|
|
82
|
+
"typecheck": "tsc --noEmit"
|
|
84
83
|
},
|
|
85
84
|
"sideEffects": false,
|
|
86
85
|
"types": "index.d.ts",
|
|
87
|
-
"version": "
|
|
86
|
+
"version": "3.0.0"
|
|
88
87
|
}
|