(appName: string)
| 6 | import { getValue } from '../helpers/config'; |
| 7 | |
| 8 | function sanitizeName(appName: string): string { |
| 9 | return appName.split("").filter((c) => |
| 10 | /[a-zA-Z0-9]/.test(c) |
| 11 | ).join(""); |
| 12 | } |
| 13 | function getDistPath() { |
| 14 | // if nativescript.config projectName is defined, use that custom name |
| 15 | // otherwise, default to base project directory name for project name |
no test coverage detected