Comparing version 1.3.1 to 1.3.2
@@ -305,7 +305,7 @@ #!/usr/bin/env node | ||
if (config.get('issue_template') === true) { | ||
if (!fs.existsSync(path.join('.github','ISSUE_TEMPLATE'))) { | ||
fs.mkdirSync(path.join('.github','ISSUE_TEMPLATE')); | ||
if (!fs.existsSync(path.join(process.cwd(),'.github','ISSUE_TEMPLATE'))) { | ||
fs.mkdirSync(path.join(process.cwd(),'.github','ISSUE_TEMPLATE')); | ||
} | ||
await write_files( | ||
path.join('.github','ISSUE_TEMPLATE'), | ||
path.join(process.cwd(),'.github','ISSUE_TEMPLATE'), | ||
issue.bug(), | ||
@@ -316,3 +316,3 @@ "bug_report", | ||
await write_files( | ||
path.join('.github','ISSUE_TEMPLATE'), | ||
path.join(process.cwd(),'.github','ISSUE_TEMPLATE'), | ||
issue.feature(), | ||
@@ -319,0 +319,0 @@ "feature_request", |
{ | ||
"name": "qikstart", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "CLI tool to kick-start a GitHub repository (LICENSE,CODE-OF-CONDUCT,README,ISSUE-TEMPLATE and many more..)", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
157206