@guanghechen/equal 1.0.0-alpha.6 → 1.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 CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 1.0.0-alpha.7 (2024-09-18)
7
+
8
+ - :wrench: chore: upgrade devDependencies and fix configs
9
+ ([230fb63](https://github.com/guanghechen/sora/commit/230fb63))
10
+
11
+ # Change Log
12
+
13
+ All notable changes to this project will be documented in this file. See
14
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
15
+
6
16
  # [1.0.0-alpha.6](https://github.com/guanghechen/sora/compare/@guanghechen/equal@1.0.0-alpha.5...@guanghechen/equal@1.0.0-alpha.6) (2024-02-03)
7
17
 
8
18
  ### Performance Improvements
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <header>
2
2
  <h1 align="center">
3
- <a href="https://github.com/guanghechen/sora/tree/@guanghechen/equal@1.0.0-alpha.6/packages/equal#readme">@guanghechen/equal</a>
3
+ <a href="https://github.com/guanghechen/sora/tree/@guanghechen/equal@1.0.0/packages/equal#readme">@guanghechen/equal</a>
4
4
  </h1>
5
5
  <div align="center">
6
6
  <a href="https://www.npmjs.com/package/@guanghechen/equal">
package/lib/cjs/index.cjs CHANGED
@@ -50,3 +50,4 @@ function isEqual(x, y) {
50
50
 
51
51
  exports.default = isEqual;
52
52
  exports.isEqual = isEqual;
53
+ //# sourceMappingURL=index.cjs.map
package/lib/esm/index.mjs CHANGED
@@ -45,3 +45,4 @@ function isEqual(x, y) {
45
45
  }
46
46
 
47
47
  export { isEqual as default, isEqual };
48
+ //# sourceMappingURL=index.mjs.map
@@ -8,3 +8,4 @@
8
8
  declare function isEqual(x: any, y: any): boolean;
9
9
 
10
10
  export { isEqual as default, isEqual };
11
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guanghechen/equal",
3
- "version": "1.0.0-alpha.6",
3
+ "version": "1.0.0",
4
4
  "description": "The fastest deep equal with ES6 Map, Set and Typed arrays support.",
5
5
  "author": {
6
6
  "name": "guanghechen",
@@ -8,10 +8,10 @@
8
8
  },
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "https://github.com/guanghechen/sora/tree/@guanghechen/equal@1.0.0-alpha.5",
11
+ "url": "https://github.com/guanghechen/sora/tree/@guanghechen/equal@1.0.0-alpha.7",
12
12
  "directory": "packages/equal"
13
13
  },
14
- "homepage": "https://github.com/guanghechen/sora/tree/@guanghechen/equal@1.0.0-alpha.5/packages/equal#readme",
14
+ "homepage": "https://github.com/guanghechen/sora/tree/@guanghechen/equal@1.0.0-alpha.7/packages/equal#readme",
15
15
  "keywords": [
16
16
  "equal",
17
17
  "fast deep equal"
@@ -38,5 +38,5 @@
38
38
  "LICENSE",
39
39
  "README.md"
40
40
  ],
41
- "gitHead": "9c051a66df3f4dbd8eddd709046af0a975fdc702"
41
+ "gitHead": "2723aaa31e8ac85afed5b25760875db429d88563"
42
42
  }