2 Commits

Author SHA1 Message Date
e40c6bb713 1.0.6 2025-01-14 17:35:49 +01:00
135a9bcf08 fix(core): Update .gitignore to improve ignored paths 2025-01-14 17:35:49 +01:00
4 changed files with 24 additions and 4 deletions

18
.gitignore vendored
View File

@ -1,5 +1,19 @@
.nogit/
node_modules/
# artifacts
coverage/
public/
pages/
# installs
node_modules/
# caches
.yarn/
.cache/
.rpt2_cache
# builds
dist/
dist_*/
#------# custom

View File

@ -1,5 +1,11 @@
# Changelog
## 2025-01-14 - 1.0.6 - fix(core)
Update .gitignore to improve ignored paths
- Ignored various build and cache directories to reduce clutter in the repository.
- Refactored .gitignore to categorize ignored paths for better readability and maintenance.
## 2025-01-14 - 1.0.5 - fix(package)
Fix scripts section in package.json by adding missing comma

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/beautyfiglet",
"version": "1.0.5",
"version": "1.0.6",
"description": "A Node.js module for creating figlet text displays.",
"exports": {
".": "./dist_ts/index.js"

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/beautyfiglet',
version: '1.0.5',
version: '1.0.6',
description: 'A Node.js module for creating figlet text displays.'
}