arvo-core 0.0.2 → 1.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.
- package/README.md +7 -0
- package/package.json +1 -1
- package/generate-changelog.sh +0 -29
package/README.md
CHANGED
@@ -39,3 +39,10 @@ The package also includes utility functions for:
|
|
39
39
|
- Creating ArvoEvents
|
40
40
|
- Integrating with OpenTelemetry
|
41
41
|
- TypeScript types for core components
|
42
|
+
|
43
|
+
## License
|
44
|
+
|
45
|
+
This package is available under the MIT License. For more details, refer to the [LICENSE.md](LICENSE.md) file in the project repository.
|
46
|
+
|
47
|
+
## Change Logs
|
48
|
+
See the package change logs [here](CHANGELOG.md).
|
package/package.json
CHANGED
package/generate-changelog.sh
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
|
3
|
-
# File name
|
4
|
-
CHANGELOG_FILE="CHANGELOG.md"
|
5
|
-
|
6
|
-
# Get current date
|
7
|
-
CURRENT_DATE=$(date +"%Y-%m-%d")
|
8
|
-
|
9
|
-
# Prompt for version
|
10
|
-
read -p "Enter version number: " VERSION
|
11
|
-
|
12
|
-
# Prompt for description
|
13
|
-
read -p "Enter change description: " DESCRIPTION
|
14
|
-
|
15
|
-
# Create or append to CHANGELOG.md
|
16
|
-
if [ ! -f "$CHANGELOG_FILE" ]; then
|
17
|
-
echo "# Changelog" > "$CHANGELOG_FILE"
|
18
|
-
echo "" >> "$CHANGELOG_FILE"
|
19
|
-
fi
|
20
|
-
|
21
|
-
# Add new entry
|
22
|
-
{
|
23
|
-
echo "## [$VERSION] - $CURRENT_DATE"
|
24
|
-
echo ""
|
25
|
-
echo "- $DESCRIPTION"
|
26
|
-
echo ""
|
27
|
-
} >> "$CHANGELOG_FILE"
|
28
|
-
|
29
|
-
echo "Changelog updated successfully!"
|