cispacempt-v2 0.1.4 → 0.1.5
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.
- package/package.json +1 -1
- package/src/index.js +1 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -117,6 +117,7 @@ module.exports = {
|
|
|
117
117
|
|
|
118
118
|
// Detect if fileSystem is a directory path string
|
|
119
119
|
const isFileSystemPath = typeof fileSystem === 'string' && fs.existsSync(fileSystem) && fs.statSync(fileSystem).isDirectory();
|
|
120
|
+
console.log(isFileSystemPath);
|
|
120
121
|
|
|
121
122
|
const stageExecuted = {}; // Track executed stages
|
|
122
123
|
|