gtx-cli 1.1.15 → 1.1.16-alpha.1
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.
|
@@ -78,6 +78,9 @@ function scanForContent(options, pkg, framework) {
|
|
|
78
78
|
const warnings = [];
|
|
79
79
|
const srcDirectory = options.src || ['./'];
|
|
80
80
|
const files = srcDirectory.flatMap((dir) => (0, findJsxFilepath_1.getFiles)(dir));
|
|
81
|
+
console.log('============================================');
|
|
82
|
+
console.log('found files: ', files);
|
|
83
|
+
console.log('============================================');
|
|
81
84
|
const filesUpdated = [];
|
|
82
85
|
for (const file of files) {
|
|
83
86
|
const code = fs_1.default.readFileSync(file, 'utf8');
|
|
@@ -78,6 +78,9 @@ function scanForContent(options, pkg, framework) {
|
|
|
78
78
|
const warnings = [];
|
|
79
79
|
const srcDirectory = options.src || ['./'];
|
|
80
80
|
const files = srcDirectory.flatMap((dir) => (0, findJsxFilepath_1.getFiles)(dir));
|
|
81
|
+
console.log('============================================');
|
|
82
|
+
console.log('found files: ', files);
|
|
83
|
+
console.log('============================================');
|
|
81
84
|
const filesUpdated = [];
|
|
82
85
|
for (const file of files) {
|
|
83
86
|
const baseFileName = path_1.default.basename(file);
|