Skip to content

Commit

Permalink
Prod is down :>
Browse files Browse the repository at this point in the history
  • Loading branch information
iTzSharkSV committed Feb 14, 2022
1 parent f2ede87 commit 4e5ea14
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Bin/Hyper
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
* @author SharkSV <https://github.com/iTzSharkSV>
*/

require('../Cli/Lib');
require('../Cli');
11 changes: 6 additions & 5 deletions Lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@ import Inquire from './Inquire';
import Info from './Modules/Info';
import Print from './Modules/Print';
import listTemplates from './Tasks/List';
import * as pkg from '../package.json';
import * as updateNotifier from 'update-notifier';

(async (): Promise<void> => {
const { version } = pkg;
const ver = version.substring(0, version.length - 2);

Info({
title: 'Hyper',
tagLine: 'by @Shorky',
description: 'A Cli to bootstrap new projects',
version: ver,
version: 2.4,
clear: true
});

const pkg = {
name: '@sharksv/hyper',
version: '2.4.1'
};

updateNotifier({
pkg,
updateCheckInterval: 0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sharksv/hyper",
"version": "2.4.0",
"version": "2.4.1",
"description": "A CLI to bootstrap new projects!",
"keywords": [
"Cli",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"target": "es6",
"outDir": "Cli",
"rootDir": ".",
"rootDir": "Lib",
"module": "CommonJS",
"moduleResolution": "node",
"resolveJsonModule": true,
Expand Down

0 comments on commit 4e5ea14

Please sign in to comment.