1
Fork 0

typescript(monorepo-template): chore: removed debug logs from template

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2020-05-10 19:58:18 +03:00 committed by prescientmoon
parent 2ce0d3a72c
commit fdbe6758db
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U

View file

@ -1,11 +1,9 @@
const packageJson = require("../../../package.json");
console.log(JSON.stringify(packageJson.repository));
const packageJson = require('../../../package.json')
exports.prompt = async ({ args }) => ({
...packageJson,
...args,
org: packageJson.name,
repository: JSON.stringify(packageJson.repository),
bugs: JSON.stringify(packageJson.bugs),
});
bugs: JSON.stringify(packageJson.bugs)
})