closer-cli 0.5.5 → 0.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/helpers.js +0 -4
  2. package/package.json +1 -1
package/helpers.js CHANGED
@@ -49,7 +49,6 @@ exports.importCsvFromFile = (file, csvType, outputDir, spinner, ws, delimiter =
49
49
  let readStream = null
50
50
 
51
51
  if (!fs.existsSync(outputDir)) {
52
- // process.umask(0o000)
53
52
  fs.mkdirSync(outputDir, { recursive: true })
54
53
  }
55
54
 
@@ -59,9 +58,6 @@ exports.importCsvFromFile = (file, csvType, outputDir, spinner, ws, delimiter =
59
58
  const skippedCsvFile = path.resolve(outputDir, `${csvType}_skipped.csv`)
60
59
  const skippedFileStream = fs.createWriteStream(skippedCsvFile)
61
60
 
62
- const filename = path.basename(file)
63
- // const dirname = path.dirname(errorCsvFile)
64
-
65
61
  let header = ''
66
62
  let lineNumber = 0
67
63
  let countImported = 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "closer-cli",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {