Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .talismanrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fileignoreconfig:
ignore_detectors:
- filecontent
- filename: package-lock.json
checksum: d9505a85f1c4d8a71bf99a70f11307f08c350b20001a02f7f7cb9ce37c1d9634
checksum: 58da400518e4eb2e953d723b6278546dba596f089ffa8bb11b41ffa4c45517c6
- filename: .husky/pre-commit
checksum: 1b9367d219802de2e3a8af9c5c698e0c255c00af89339d73bdbb8acf5275079f
- filename: src/util/index.ts
Expand Down
136 changes: 61 additions & 75 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentstack/datasync-content-store-filesystem",
"version": "2.1.5",
"version": "2.1.6",
"description": "Datasync content store library - saves data in filesystem",
"main": "./dist",
"types": "./typings",
Expand Down
4 changes: 2 additions & 2 deletions src/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
* MIT Licensed
*/

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

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

if (
process.env.DEBUG === "*" ||
Expand Down
Loading