Skip to content

Commit 4e5ea14

Browse files
committed
Prod is down :>
1 parent f2ede87 commit 4e5ea14

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

Bin/Hyper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
* @author SharkSV <https://github.com/iTzSharkSV>
88
*/
99

10-
require('../Cli/Lib');
10+
require('../Cli');

Lib/index.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@ import Inquire from './Inquire';
44
import Info from './Modules/Info';
55
import Print from './Modules/Print';
66
import listTemplates from './Tasks/List';
7-
import * as pkg from '../package.json';
87
import * as updateNotifier from 'update-notifier';
98

109
(async (): Promise<void> => {
11-
const { version } = pkg;
12-
const ver = version.substring(0, version.length - 2);
13-
1410
Info({
1511
title: 'Hyper',
1612
tagLine: 'by @Shorky',
1713
description: 'A Cli to bootstrap new projects',
18-
version: ver,
14+
version: 2.4,
1915
clear: true
2016
});
2117

18+
const pkg = {
19+
name: '@sharksv/hyper',
20+
version: '2.4.1'
21+
};
22+
2223
updateNotifier({
2324
pkg,
2425
updateCheckInterval: 0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sharksv/hyper",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "A CLI to bootstrap new projects!",
55
"keywords": [
66
"Cli",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"target": "es6",
44
"outDir": "Cli",
5-
"rootDir": ".",
5+
"rootDir": "Lib",
66
"module": "CommonJS",
77
"moduleResolution": "node",
88
"resolveJsonModule": true,

0 commit comments

Comments
 (0)