@guanghechen/invariant 5.0.2 → 5.0.3

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,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.0.3](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.2...@guanghechen/invariant@5.0.3) (2023-07-25)
7
+
8
+
9
+ ### Performance Improvements
10
+
11
+ * 🔧 update npm script ([4ffc90a](https://github.com/guanghechen/node-scaffolds/commit/4ffc90aff15c75fcc6afeeabf4d83dbc8c1b7933))
12
+ * ⬆️ upgrade dependencies ([a9b6097](https://github.com/guanghechen/node-scaffolds/commit/a9b609785175e91903ca8215a807691ba6fbc419))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [5.0.2](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.1...@guanghechen/invariant@5.0.2) (2023-07-15)
7
19
 
8
20
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <header>
2
2
  <h1 align="center">
3
- <a href="https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.2/packages/invariant#readme">@guanghechen/invariant</a>
3
+ <a href="https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.3/packages/invariant#readme">@guanghechen/invariant</a>
4
4
  </h1>
5
5
  <div align="center">
6
6
  <a href="https://www.npmjs.com/package/@guanghechen/invariant">
@@ -84,5 +84,5 @@ and throw an error when the given condition fails.
84
84
 
85
85
  ## Related
86
86
 
87
- [homepage]: https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.2/packages/invariant#readme
87
+ [homepage]: https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.3/packages/invariant#readme
88
88
  [tiny-invariant]: https://github.com/alexreardon/tiny-invariant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guanghechen/invariant",
3
- "version": "5.0.2",
3
+ "version": "5.0.3",
4
4
  "description": "Invariant function",
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/node-scaffolds/tree/@guanghechen/invariant@5.0.1",
11
+ "url": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.2",
12
12
  "directory": "packages/invariant"
13
13
  },
14
- "homepage": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.1/packages/invariant#readme",
14
+ "homepage": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.2/packages/invariant#readme",
15
15
  "type": "module",
16
16
  "main": "./lib/cjs/index.cjs",
17
17
  "module": "./lib/esm/index.mjs",
@@ -36,13 +36,13 @@
36
36
  "scripts": {
37
37
  "build": "rimraf lib/ && cross-env NODE_ENV=production rollup -c ../../rollup.config.mjs",
38
38
  "prepublishOnly": "yarn build",
39
- "test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
39
+ "test": "node --experimental-vm-modules ../../node_modules/.bin/jest --config ../../jest.config.mjs --rootDir ."
40
40
  },
41
41
  "devDependencies": {
42
42
  "cross-env": "^7.0.3",
43
43
  "jest": "^29.6.1",
44
44
  "rimraf": "^5.0.1",
45
- "rollup": "^3.26.2"
45
+ "rollup": "^3.26.3"
46
46
  },
47
- "gitHead": "358cd94317d54c2cbcd4d8328e12e5a874cf10fe"
47
+ "gitHead": "c73aeda6dc59c73c8d1e6d68d6dbf7b4f84dde24"
48
48
  }