Updated format
This commit is contained in:
parent
d011f4547e
commit
e26ee50faf
@ -7,4 +7,4 @@ steps:
|
||||
commands:
|
||||
- npm config set registry https://r.ctdn.net
|
||||
- npm install
|
||||
- npm run build
|
||||
- npm run build
|
||||
|
@ -153,4 +153,4 @@ module.exports = {
|
||||
"use-isnan": "error",
|
||||
"valid-typeof": "off",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
13
README.md
13
README.md
@ -1,10 +1,11 @@
|
||||
# TS Project (Template for TypeScript)
|
||||
|
||||
- TypeScript
|
||||
- TS Node Dev
|
||||
- Husky
|
||||
- Prettier
|
||||
- ESLint
|
||||
- TypeScript
|
||||
- TS Node Dev
|
||||
- Husky
|
||||
- Prettier
|
||||
- ESLint
|
||||
|
||||
### Contributors
|
||||
- Sambo Chea <sombochea@cubetiqs.com>
|
||||
|
||||
- Sambo Chea <sombochea@cubetiqs.com>
|
||||
|
@ -36,4 +36,4 @@ export const millisToSeconds = (millis: number) => {
|
||||
export const randomThenGetOne = (data: any[]): any => {
|
||||
const randomIndex = Math.floor(Math.random() * data.length)
|
||||
return data[randomIndex]
|
||||
}
|
||||
}
|
||||
|
@ -13,4 +13,4 @@
|
||||
// parse2Int,
|
||||
// parse2IntOrNull,
|
||||
// parseToBoolean,
|
||||
// }
|
||||
// }
|
||||
|
@ -41,4 +41,4 @@ export const info = (message?: any, ...args: any[]) => {
|
||||
export const success = (message?: any, ...args: any[]) => {
|
||||
const msg = prefixColor("SUCCESS", message)
|
||||
args.length === 0 ? logger.info(msg) : logger.info(msg, ...args)
|
||||
}
|
||||
}
|
||||
|
@ -52,4 +52,4 @@ class Logger {
|
||||
}
|
||||
}
|
||||
|
||||
export default Logger
|
||||
export default Logger
|
||||
|
@ -18,4 +18,4 @@ export const parseToBoolean = (
|
||||
): boolean => {
|
||||
if (!val) return defaultValue
|
||||
return val === true || val.toLowerCase() === "true"
|
||||
}
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
"lib": ["ES2015"],
|
||||
"skipLibCheck": true,
|
||||
"allowJs": true,
|
||||
"declaration": true,
|
||||
"declaration": true
|
||||
},
|
||||
"include": ["src/**/*"]
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user