@aurodesignsystem/auro-library 5.5.4 → 5.5.6
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 +14 -0
- package/package.json +1 -1
- package/scripts/build/versionWriter.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
## [5.5.6](https://github.com/AlaskaAirlines/auro-library/compare/v5.5.5...v5.5.6) (2026-01-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* corrects issue with version writer causing lint issues in repos [#209](https://github.com/AlaskaAirlines/auro-library/issues/209) ([13b61a6](https://github.com/AlaskaAirlines/auro-library/commit/13b61a6c5c997f5f8acc11ede992f51190036149))
|
|
9
|
+
|
|
10
|
+
## [5.5.5](https://github.com/AlaskaAirlines/auro-library/compare/v5.5.4...v5.5.5) (2026-01-13)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* corrects issue with version writer causing lint issues in repos [#209](https://github.com/AlaskaAirlines/auro-library/issues/209) ([e72266d](https://github.com/AlaskaAirlines/auro-library/commit/e72266dc294cad813a2665fb0c17bcb12628e364))
|
|
16
|
+
|
|
3
17
|
## [5.5.4](https://github.com/AlaskaAirlines/auro-library/compare/v5.5.3...v5.5.4) (2025-10-08)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@ function writeDepVersionFile(pkg) {
|
|
|
19
19
|
const elemSubName = pkg.substring(pkg.indexOf('auro-') + auroSubNameIndex);
|
|
20
20
|
const versionFilePath = `./src/${elemSubName}Version.js`;
|
|
21
21
|
|
|
22
|
-
fs.writeFileSync(versionFilePath, `export default
|
|
22
|
+
fs.writeFileSync(versionFilePath, `export default "${version}";`);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
// add the code below
|