@aurodesignsystem/auro-library 1.0.0 → 1.0.1
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 +7 -0
- package/package.json +1 -1
- package/scripts/build/versionWriter.js +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.1](https://github.com/AlaskaAirlines/auro-library/compare/v1.0.0...v1.0.1) (2023-07-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **versionWriter:** use correct path to node_modules directory [#23](https://github.com/AlaskaAirlines/auro-library/issues/23) ([e926397](https://github.com/AlaskaAirlines/auro-library/commit/e926397a8b31c90e9c7e80fd5126600d20ffc3b5))
|
|
9
|
+
|
|
3
10
|
# 1.0.0 (2023-07-14)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -11,8 +11,7 @@ const auroSubNameIndex = 5;
|
|
|
11
11
|
*/
|
|
12
12
|
function writeDepVersionFile(pkg) {
|
|
13
13
|
const fs = require('fs');
|
|
14
|
-
|
|
15
|
-
const path = `../node_modules/${pkg}/package.json`;
|
|
14
|
+
const path = `${pkg}/package.json`;
|
|
16
15
|
const json = require(path);
|
|
17
16
|
const {version} = json;
|
|
18
17
|
const elemSubName = pkg.substring(pkg.indexOf('auro-') + auroSubNameIndex);
|