@foray1010/common-presets-utils 3.0.0 → 5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
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.0](https://github.com/foray1010/common-presets/compare/@foray1010/common-presets-utils@4.0.0...@foray1010/common-presets-utils@5.0.0) (2022-06-13)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - drop node 12 and 17
11
+
12
+ ### Miscellaneous Chores
13
+
14
+ - drop node 12 and 17 ([c43351e](https://github.com/foray1010/common-presets/commit/c43351e0da92209fc3100d9cb1bc129af320fdac))
15
+
16
+ ## [4.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/common-presets-utils@3.0.1...@foray1010/common-presets-utils@4.0.0) (2021-11-10)
17
+
18
+ ### ⚠ BREAKING CHANGES
19
+
20
+ - only support node ^12.22.0 || ^14.17.0 || >=16.13.0
21
+
22
+ ### Miscellaneous Chores
23
+
24
+ - bump node version requirement ([6906953](https://github.com/foray1010/common-presets/commit/6906953ac0b781376d5c8a17d27faef6a457278a))
25
+
26
+ ### [3.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/common-presets-utils@3.0.0...@foray1010/common-presets-utils@3.0.1) (2021-08-25)
27
+
28
+ **Note:** Version bump only for package @foray1010/common-presets-utils
29
+
6
30
  ## [3.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/common-presets-utils@2.1.2...@foray1010/common-presets-utils@3.0.0) (2021-04-29)
7
31
 
8
32
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/common-presets-utils",
4
- "version": "3.0.0",
4
+ "version": "5.0.0",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/common-presets-utils#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -12,16 +12,17 @@
12
12
  "license": "MIT",
13
13
  "exports": "./index.js",
14
14
  "files": [
15
- "**/*.{cjs,js,json,mjs}"
15
+ "**/*.{cjs,js,json,mjs}",
16
+ "*.md"
16
17
  ],
17
18
  "dependencies": {
18
19
  "read-pkg-up": "^7.0.1"
19
20
  },
20
21
  "engines": {
21
- "node": ">=12.13"
22
+ "node": "^14.17.0 || >=16.13.0 || >=18.0.0"
22
23
  },
23
24
  "publishConfig": {
24
25
  "access": "public"
25
26
  },
26
- "gitHead": "fb70357d157e2521b6754a18ae95e240695b9f94"
27
+ "gitHead": "6b2dbe64ac8e4677dfb6b72f70e185bcd607f17b"
27
28
  }