@ziacik/upgrade-verify 0.0.4 → 0.1.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 +8 -1
  2. package/package.json +8 -3
package/CHANGELOG.md CHANGED
@@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
 
14
14
  - Package exports error fixed.
15
15
 
16
+ ## [0.1.0] - 2023-09-23
17
+
18
+ ### Changed
19
+
20
+ - Upgraded nx to 16.9.0.
21
+
16
22
  ## [0.0.3] - 2023-07-23
17
23
 
18
24
  ### Fixed
@@ -26,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
32
  - READMEs updated and props added to package.json.
27
33
  - A _Package subpath './package.json' is not defined by "exports"_ error hopefully fixed.
28
34
 
29
- [unreleased]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-0.0.4...HEAD
35
+ [unreleased]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-0.1.0...HEAD
36
+ [0.1.0]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-0.0.4...upgrade-verify-0.1.0
30
37
  [0.0.4]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-0.0.3...upgrade-verify-0.0.4
31
38
  [0.0.3]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-0.0.2...upgrade-verify-0.0.3
32
39
  [0.0.2]: https://github.com/ziacik/nx-tools/compare/upgrade-verify-0.0.1...upgrade-verify-0.0.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ziacik/upgrade-verify",
3
- "version": "0.0.4",
3
+ "version": "0.1.0",
4
4
  "type": "commonjs",
5
5
  "executors": "./executors.json",
6
6
  "keywords": [
@@ -18,12 +18,17 @@
18
18
  "url": "https://github.com/ziacik/nx-tools"
19
19
  },
20
20
  "license": "MIT",
21
+ "exports": {
22
+ ".": {
23
+ "require": "./package.json"
24
+ }
25
+ },
21
26
  "dependencies": {
22
- "@nx/devkit": "16.4.0",
27
+ "@nx/devkit": "16.9.0",
23
28
  "process": "0.11.10"
24
29
  },
25
30
  "peerDependencies": {
26
- "@swc/helpers": "0.5.1"
31
+ "@swc/helpers": "0.5.2"
27
32
  },
28
33
  "main": "./src/index.js"
29
34
  }