Compare commits

..

No commits in common. "master" and "v2.2.1" have entirely different histories.

3 changed files with 3 additions and 8 deletions

View File

@ -1,10 +1,5 @@
# Changelog # Changelog
## 2025-01-24 - 2.2.2 - fix(package)
Fix export path in package.json
- Corrected the export path from './dist/index.js' to './dist_ts/index.js' in package.json
## 2025-01-24 - 2.2.1 - fix(documentation) ## 2025-01-24 - 2.2.1 - fix(documentation)
Remove unnecessary markdown syntax from the README. Remove unnecessary markdown syntax from the README.

View File

@ -1,10 +1,10 @@
{ {
"name": "@push.rocks/smartfm", "name": "@push.rocks/smartfm",
"version": "2.2.2", "version": "2.2.1",
"private": false, "private": false,
"description": "A Node.js module for handling and processing frontmatter in markdown and text files, leveraging the gray-matter library for parsing and stringifying YAML or JSON formatted frontmatter.", "description": "A Node.js module for handling and processing frontmatter in markdown and text files, leveraging the gray-matter library for parsing and stringifying YAML or JSON formatted frontmatter.",
"exports": { "exports": {
".": "./dist_ts/index.js" ".": "./dist/index.js"
}, },
"type": "module", "type": "module",
"scripts": { "scripts": {

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartfm', name: '@push.rocks/smartfm',
version: '2.2.2', version: '2.2.1',
description: 'A Node.js module for handling and processing frontmatter in markdown and text files, leveraging the gray-matter library for parsing and stringifying YAML or JSON formatted frontmatter.' description: 'A Node.js module for handling and processing frontmatter in markdown and text files, leveraging the gray-matter library for parsing and stringifying YAML or JSON formatted frontmatter.'
} }