-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
42 lines (41 loc) · 863 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* @package node-lib
* @author InkSha
* @license MIT
* @description Some Develop Library.
* @create 2024-04-04
* @update 2024-04-04
*/
/**
* package name
*/
export const PACKAGE_NAME = 'node-lib'
/**
* package version name
* version release pacakge name
*/
export const PACKAGE_VERSION = 'alpha'
/**
* package master version number
* update new feature
*/
export const MASTER_VERSION = 0
/**
* package second version number
* change current feature
*/
export const SECOND_VERSION = 0
/**
* package patch version number
* fix current question
*/
export const PATCH_VERSION = 0
/**
* package correct version number
* optimize current feature
*/
export const CORRECT_VERSION = 0
/**
* package current version
*/
export const CURRENT_VERSION = `${PACKAGE_VERSION} ${MASTER_VERSION}.${SECOND_VERSION}.${PATCH_VERSION}.${CORRECT_VERSION}`