Skip to content

Commit

Permalink
feat(): log out test file content
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Bashmakov committed Apr 9, 2024
1 parent 832e187 commit f50bdcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/foreign.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const fs = require('fs');
module.exports = function(opts) {
const file = path.resolve(opts.target, 'eo-foreign.json');
const content = fs.readFileSync(file, 'utf8');
console.error('======== eo-foreign.json content : ', content);
console.error(content);
const all = JSON.parse(content);
console.info('There are %d objects in %s:', all.length, rel(file));
all.forEach((obj) => {
Expand Down

0 comments on commit f50bdcc

Please sign in to comment.