Skip to content

Instantly share code, notes, and snippets.

View GinoVillalpando's full-sized avatar

Gino Villalpando GinoVillalpando

View GitHub Profile
{
"useTaobaoRegistry": false,
"presets": {
"vue-project-template": {
"useConfigFiles": true,
"plugins": {
"@vue/cli-plugin-babel": {},
"@vue/cli-plugin-typescript": {
"classComponent": true,
"useTsWithBabel": true
@GinoVillalpando
GinoVillalpando / create-vue-app.sh
Last active November 23, 2020 18:35
create vue app script
#!/bin/sh
# Print usage statement with option error message
function usage {
message=$1
if [ "$message" != "" ]; then
echo "$message"
fi
echo -e "\nUsage: $0 <project-name>"
exit 1
@GinoVillalpando
GinoVillalpando / create-react-app.sh
Last active November 12, 2020 22:08
create react app script
#!/bin/sh
# Print usage statement with option error message
function usage {
message=$1
if [ "$message" != "" ]; then
echo "$message"
fi
echo -e "\nUsage: $0 <project-name>"
exit 1