Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
6b8d951024 | |||
75f8877356 |
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## 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)
|
||||
Removed unnecessary files and updated dependencies
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@push.rocks/beautyfiglet",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"description": "A Node.js module for creating figlet text displays.",
|
||||
"exports": {
|
||||
".": "./dist_ts/index.js"
|
||||
@ -9,7 +9,8 @@
|
||||
"author": "Lossless GmbH",
|
||||
"scripts": {
|
||||
"test": "(tstest test/)",
|
||||
"format": "(gitzone format)"
|
||||
"format": "(gitzone format)",
|
||||
"build": "(tsbuild)"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/figlet": "^1.7.0",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/beautyfiglet',
|
||||
version: '1.0.4',
|
||||
version: '1.0.5',
|
||||
description: 'A Node.js module for creating figlet text displays.'
|
||||
}
|
||||
|
Reference in New Issue
Block a user