4 Commits

4 changed files with 31 additions and 5 deletions

18
.gitignore vendored
View File

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

View File

@ -1,5 +1,16 @@
# Changelog # 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
- Corrected the JSON format in the scripts section by adding a missing comma between format and build scripts.
## 2025-01-14 - 1.0.4 - fix(core) ## 2025-01-14 - 1.0.4 - fix(core)
Removed unnecessary files and updated dependencies Removed unnecessary files and updated dependencies

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/beautyfiglet", "name": "@push.rocks/beautyfiglet",
"version": "1.0.4", "version": "1.0.6",
"description": "A Node.js module for creating figlet text displays.", "description": "A Node.js module for creating figlet text displays.",
"exports": { "exports": {
".": "./dist_ts/index.js" ".": "./dist_ts/index.js"
@ -9,7 +9,8 @@
"author": "Lossless GmbH", "author": "Lossless GmbH",
"scripts": { "scripts": {
"test": "(tstest test/)", "test": "(tstest test/)",
"format": "(gitzone format)" "format": "(gitzone format)",
"build": "(tsbuild)"
}, },
"dependencies": { "dependencies": {
"@types/figlet": "^1.7.0", "@types/figlet": "^1.7.0",

View File

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