Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed May 10, 2024
1 parent d4f7c32 commit c359f2e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion eo2js-runtime/src/runtime/validated.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const validated = function(callback) {
try {
return callback()
} catch (error) {
console.log(error.message)
if (error instanceof ErFailure) {
throw new ErError(
data.toObject(error.message)
Expand Down
1 change: 0 additions & 1 deletion eo2js/src/commands/link.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const link = function(options) {
options = {...program.opts(), ...options}
const project = path.resolve(options.target, options.project)
fs.writeFileSync(path.resolve(project, 'package.json'), JSON.stringify(pckg))
console.log(project)
execSync('npm install', {cwd: project})
fs.copyFileSync(
path.resolve(options.resources, `js/${main}`),
Expand Down

0 comments on commit c359f2e

Please sign in to comment.