Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

qikstart

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qikstart - npm Package Compare versions

Comparing version 1.2.1 to 1.3.0

10

index.js

@@ -13,3 +13,2 @@ #!/usr/bin/env node

const fs = require('fs');
const path = require('path');
const qoa = require('qoa');

@@ -19,2 +18,3 @@ const Conf = require('conf');

const symbols = require('log-symbols');
const path = require('path');

@@ -307,7 +307,7 @@ const config = new Conf();

if (config.get('issue_template') === true) {
if (!fs.existsSync('./.github/ISSUE_TEMPLATE')) {
fs.mkdirSync('./.github/ISSUE_TEMPLATE');
if (!fs.existsSync(path.join(__dirname,'.github','ISSUE_TEMPLATE'))) {
fs.mkdirSync(path.join(__dirname,'.github','ISSUE_TEMPLATE'));
}
await write_files(
"./.github/ISSUE_TEMPLATE",
path.join(__dirname,'.github','ISSUE_TEMPLATE'),
issue.bug(),

@@ -318,3 +318,3 @@ "bug_report",

await write_files(
"./.github/ISSUE_TEMPLATE",
path.join(__dirname,'.github','ISSUE_TEMPLATE'),
issue.feature(),

@@ -321,0 +321,0 @@ "feature_request",

{
"name": "qikstart",
"version": "1.2.1",
"version": "1.3.0",
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc