Skip to content

Instantly share code, notes, and snippets.

View balibou's full-sized avatar

Benjamin Cherion balibou

View GitHub Profile
@balibou
balibou / Dashboard.vue
Created March 13, 2017 12:32
TypeError: child._updateFromParent is not a function
<template lang="html">
<div>
<top-stats v-on:dataChanged="UpdateChart"></top-stats>
<line-chart></line-chart>
</div>
</template>
<script>
import { SET_CHART } from '../../vuex/mutation-types.js'
import LineChart from '../charts/LineChart.vue'
0xD19D2b80d8F424aee91263c357938806A7d9B22a
@balibou
balibou / prehotfix.sh
Last active January 1, 2018 12:15
prehotfix.sh
#!/bin/bash
# this script will create a hotfix branch
# get package.json version
prop="version"
PACKAGE_VERSION="$(node -pe "require('./package.json')['$prop']")"
# define package version
PACKAGE_VERSION_LIST=(`echo $PACKAGE_VERSION | tr '.' ' '`)
@balibou
balibou / posthotfix.sh
Created January 1, 2018 12:16
posthotfix.sh
#!/bin/bash
# this script will merge the hotfix branch
# checks if branch has something pending
function parse_git_dirty() {
git diff --quiet --ignore-submodules HEAD 2>/dev/null; [ $? -eq 1 ] && echo "*"
}
# gets the current git branch