Download and install the following applications:
- GitHub Desktop (GIT interface)
- https://desktop.github.com/
- Sign in with GitHub account
- Atom (code editor)
- Gitter (chat client)
/** | |
* Module dependencies | |
*/ | |
var fs = require('fs'); | |
var os = require('os'); | |
var del = require('del'); | |
/** | |
* Get an temporary directory with given name |
Terminal commands |
Setup GitHub issue labels script |
Angular directives |
/** | |
* Module definition and dependencies | |
*/ | |
angular.module('Api.DuplicateRequestsFilter.Decorator', []) | |
/** | |
* Config | |
*/ | |
.config(function($provide) { |
Download and install the following applications:
'use strict'; | |
module.exports = function waterfall(promises) { | |
return promises.reduce((previousPromise, promise) => { | |
return previousPromise.then(() => { | |
return promise(); | |
}); | |
}, Promise.resolve()); | |
}; |
root: true | |
extends: eslint:recommended | |
parserOptions: | |
ecmaVersion: 2017 | |
ecmaFeatures: | |
impliedStrict: true | |
sourceType: module | |
env: | |
es6: true | |
browser: true |
{ | |
"name": "project-name", | |
"description": "Template for static sites", | |
"version": "1.0.0", | |
"homepage": "http://www.project-name.com", | |
"author": { | |
"name": "Adam Reis", | |
"url": "http://adam.reis.nz" | |
}, | |
"license": "UNLICENSED", |
#!/usr/bin/env bash | |
# Assuming you have a master and dev branch, and that you make new | |
# release branches named as the version they correspond to, e.g. 1.0.3 | |
# Usage: ./release.sh 1.0.3 | |
# Get version argument and verify | |
version=$1 | |
if [ -z "$version" ]; then | |
echo "Please specify a version" |