@aurodesignsystem/auro-library 3.0.10 → 3.0.11
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 +2 -2
- package/scripts/build/prepExampleFiles.mjs +0 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
## [3.0.11](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.10...v3.0.11) (2025-02-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Performance Improvements
|
|
7
|
+
|
|
8
|
+
* update eslint-config to get rid of node version warnings ([ecb349e](https://github.com/AlaskaAirlines/auro-library/commit/ecb349ebf223a9eb14f0e01ddaee5cfdc4558acd))
|
|
9
|
+
|
|
3
10
|
## [3.0.10](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.9...v3.0.10) (2025-02-20)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurodesignsystem/auro-library",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.11",
|
|
4
4
|
"description": "This repository holds shared scripts, utilities, and workflows utilized across repositories along the Auro Design System.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"generateDocs": "./bin/generateDocs.mjs"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@aurodesignsystem/eslint-config": "
|
|
18
|
+
"@aurodesignsystem/eslint-config": "1.3.4",
|
|
19
19
|
"@commitlint/cli": "^18.5.0",
|
|
20
20
|
"@commitlint/config-conventional": "^18.5.0",
|
|
21
21
|
"@semantic-release/changelog": "^6.0.3",
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import fs from 'fs';
|
|
2
|
-
|
|
3
|
-
function removeExport(path, type) {
|
|
4
|
-
fs.readFile(path, type, (err, data) => {
|
|
5
|
-
if (err) {
|
|
6
|
-
throw err;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
const exportPos = data.indexOf('export');
|
|
10
|
-
const exampleScript = data.substring(0, exportPos);
|
|
11
|
-
const writer = fs.createWriteStream(path);
|
|
12
|
-
writer.write(exampleScript, (writeErr) => {
|
|
13
|
-
if (writeErr) {
|
|
14
|
-
throw writeErr;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
writer.end();
|
|
18
|
-
});
|
|
19
|
-
});
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
removeExport('./demo/index.min.js', 'utf8');
|
|
23
|
-
removeExport('./demo/api.min.js', 'utf8');
|