typescript(monorepo-template): chore: removed debug logs from template
Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
parent
2ce0d3a72c
commit
fdbe6758db
|
@ -1,11 +1,9 @@
|
||||||
const packageJson = require("../../../package.json");
|
const packageJson = require('../../../package.json')
|
||||||
|
|
||||||
console.log(JSON.stringify(packageJson.repository));
|
|
||||||
|
|
||||||
exports.prompt = async ({ args }) => ({
|
exports.prompt = async ({ args }) => ({
|
||||||
...packageJson,
|
...packageJson,
|
||||||
...args,
|
...args,
|
||||||
org: packageJson.name,
|
org: packageJson.name,
|
||||||
repository: JSON.stringify(packageJson.repository),
|
repository: JSON.stringify(packageJson.repository),
|
||||||
bugs: JSON.stringify(packageJson.bugs),
|
bugs: JSON.stringify(packageJson.bugs)
|
||||||
});
|
})
|
||||||
|
|
Loading…
Reference in a new issue