Skip to content

Commit a527076

Browse files
Merge pull request #69 from contentstack/development
DX | 14-07-2025 | Release
2 parents 5cb5d04 + 88f69a7 commit a527076

File tree

4 files changed

+65
-79
lines changed

4 files changed

+65
-79
lines changed

.talismanrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ fileignoreconfig:
33
ignore_detectors:
44
- filecontent
55
- filename: package-lock.json
6-
checksum: d9505a85f1c4d8a71bf99a70f11307f08c350b20001a02f7f7cb9ce37c1d9634
6+
checksum: 58da400518e4eb2e953d723b6278546dba596f089ffa8bb11b41ffa4c45517c6
77
- filename: .husky/pre-commit
88
checksum: 1b9367d219802de2e3a8af9c5c698e0c255c00af89339d73bdbb8acf5275079f
99
- filename: src/util/index.ts

package-lock.json

Lines changed: 61 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@contentstack/datasync-content-store-filesystem",
3-
"version": "2.1.5",
3+
"version": "2.1.6",
44
"description": "Datasync content store library - saves data in filesystem",
55
"main": "./dist",
66
"types": "./typings",

src/fs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* MIT Licensed
55
*/
66

7-
import { debug as Debug } from 'debug'
87
import { existsSync, unlinkSync, mkdirSync } from 'fs'
98
import { cloneDeep, compact } from 'lodash'
109
import { join, sep } from 'path'
@@ -17,7 +16,8 @@ import {
1716
validatePublishedObject, validateUnpublishedObject,
1817
} from './util/validations'
1918

20-
const debug = Debug('core-fs')
19+
const debug = require('debug')('core-fs')
20+
debug.log = console.log.bind(console);
2121

2222
if (
2323
process.env.DEBUG === "*" ||

0 commit comments

Comments
 (0)