Taken from here
Add remonte branch:
git remote add --track master mleung git://github.com/mleung/feather.git
Verify:
git remote
Taken from here
Add remonte branch:
git remote add --track master mleung git://github.com/mleung/feather.git
Verify:
git remote
==> default: Exporting NFS shared folders...
NFS is reporting that your exports file is invalid. Vagrant does
this check before making any changes to the file. Please correct
the issues below and execute "vagrant reload":
exports:2: path contains non-directory or non-existent components: /Users/<username>/path/to/vagrant
exports:2: no usable directories in export entry
exports:2: using fallback (marked offline): /
/** | |
The following can replace the file in the Field Arrays example | |
(https://github.com/erikras/redux-form/tree/master/examples/fieldArrays) to demonstrate this functionality. | |
**/ | |
import React from 'react' | |
import { connect } from 'react-redux' | |
import { Field, FieldArray, reduxForm, formValueSelector } from 'redux-form' | |
import validate from './validate' |
const DEFAULT_BACKOFF = 200; // milliseconds | |
export class Polling { | |
constructor(fn, maxRetries = 10, initialDelay = DEFAULT_BACKOFF) { | |
this._fn = fn; | |
this._remainingRetries = maxRetries; | |
this._delay = initialDelay; | |
} | |
async perform() { |
/** | |
* Angular class decorator to track the page visit | |
* | |
*/ | |
import { Injector } from '@angular/core'; | |
import { AnalyticService } from '../analytics.service'; | |
export function PageAnalytics(pageName: string) { | |
return function (constructor: Function) { |