@quonfig/react 0.0.12 → 0.0.13
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 +6 -0
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
|
|
3
|
+
## 0.0.13 - 2026-05-10
|
|
4
|
+
|
|
5
|
+
- **chore: declare `engines.node` >=20.9.0 + pin CI floor (qfg-y7xh).** Adds an explicit
|
|
6
|
+
`engines.node` field to `package.json` so npm warns consumers on unsupported Node, and pins the CI
|
|
7
|
+
matrix floor to 20.9.0 to match. No runtime behavior change.
|
|
8
|
+
|
|
3
9
|
## 0.0.12 - 2026-05-03
|
|
4
10
|
|
|
5
11
|
- **chore!: narrow `react` peer dep to `^18 || ^19` (qfg-bsji).** The advertised range
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"packageManager": "yarn@4.11.0",
|
|
3
3
|
"name": "@quonfig/react",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.13",
|
|
5
5
|
"description": "Feature Flags & Dynamic Configuration as a Service",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"LICENSE",
|
|
29
29
|
"CHANGELOG.md"
|
|
30
30
|
],
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=20.9.0"
|
|
33
|
+
},
|
|
31
34
|
"scripts": {
|
|
32
35
|
"prebuild": "node scripts/generate-version.mjs",
|
|
33
36
|
"build": "rm -rf dist/ && tsup",
|
|
@@ -36,7 +39,8 @@
|
|
|
36
39
|
"test": "tsup && jest --verbose",
|
|
37
40
|
"lint": "eslint --ext .ts,.tsx src/",
|
|
38
41
|
"prettier": "prettier . -l",
|
|
39
|
-
"prettier:fix": "prettier --write ."
|
|
42
|
+
"prettier:fix": "prettier --write .",
|
|
43
|
+
"version": "prettier --write CHANGELOG.md README.md && git add CHANGELOG.md README.md"
|
|
40
44
|
},
|
|
41
45
|
"size-limit": [
|
|
42
46
|
{
|