Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

v0.9.0 - Important bug fixes #72

Merged
merged 30 commits into from
Apr 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
bf47c0b
bump version and engines
himynameisdave Jan 19, 2017
f9af38c
Bumps the year
himynameisdave Jan 19, 2017
e3bb6d2
Bump `github-url-from-git` dependency to 1.5.0
himynameisdave Jan 19, 2017
245d36f
Adds proper error handling if repo can't be read
himynameisdave Mar 18, 2017
ccfe17b
.split on 'https://github.com/' instead of '/'
himynameisdave Mar 18, 2017
d46aea6
Merge pull request #66 from himynameisdave/issues/66
himynameisdave Mar 18, 2017
3425f67
Adds *.DS_Store to gitignore
himynameisdave Mar 18, 2017
76997db
Modifies readRepo to prompt the user which remote if multiple remotes
himynameisdave Mar 18, 2017
4228c89
Cleans up readRepo
himynameisdave Mar 18, 2017
c539db5
Merge pull request #67 from himynameisdave/issues/67
himynameisdave Mar 18, 2017
23e4868
Fixes an issue where getParsedGitUrl wasn't returning
himynameisdave Mar 18, 2017
ca31c69
Adds a per_page param of 100
himynameisdave Mar 18, 2017
30be1e5
Merge pull request #71 from himynameisdave/issues/71
himynameisdave Mar 18, 2017
8ec8f48
Adds yarn, adds jest, bumps rgb-hex
himynameisdave Apr 1, 2017
bd76945
Adds eslint
himynameisdave Apr 1, 2017
cadd4e4
Lints index.js manyt linter errors 😱
himynameisdave Apr 1, 2017
8227a54
lintfixes ./bin/modules/** ✨✨✨
himynameisdave Apr 1, 2017
8e38016
lintfixes ./bin/prompts/** 🔮🔮🔮
himynameisdave Apr 1, 2017
c379df1
lintfixes ./bin/utils/** 💫 💫 💫
himynameisdave Apr 1, 2017
060ec2e
Hyphenates ALL filenames, resolves edge case issues on some OS versions
himynameisdave Apr 1, 2017
b9d4685
Adds tests for ./bin/prompts/**
himynameisdave Apr 2, 2017
f7904ab
Adds tests for ./bin/utils/**, adds string as a dep & adds test scrip…
himynameisdave Apr 2, 2017
9b8cb91
Adds *some* tests for ./bin/modules/**
himynameisdave Apr 2, 2017
2d96e67
Adds travis.yml
himynameisdave Apr 2, 2017
b3c0e0a
Adds husky for precommit lint & test hooks
himynameisdave Apr 2, 2017
c033232
Removes prepush, twas a silly hook anyway
himynameisdave Apr 2, 2017
657050c
Bumps minimum Node versions (for the time being)
himynameisdave Apr 2, 2017
aa24408
Support all major versions of node from 4-7
himynameisdave Apr 2, 2017
2721fcb
Resolves build issues with node < 6
himynameisdave Apr 2, 2017
279ccea
Merge pull request #78 from himynameisdave/issues/30
himynameisdave Apr 2, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"extends": "airbnb-base",
"env": {
"browser": false,
"node": true,
"es6": true,
"jest": true
},
"rules": {
"arrow-parens": [0],
"indent": [2, 4, { "SwitchCase": 1, "VariableDeclarator": 1 }],
"max-len": [0],
"no-console": [0],
"no-multi-spaces": [0],
"no-plusplus": [0],
"no-underscore-dangle": [0],
"global-require": [0],
"comma-dangle": [2, {
"arrays": "ignore",
"objects": "always",
"imports": "always",
"exports": "always",
"functions": "ignore"
}],
"key-spacing": [0],
"radix": [0],
"strict": [0, "never"],
"import/extensions": [0]
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/node_modules/
*.bcup
*.DS_Store
/coverage/
3 changes: 0 additions & 3 deletions .jshintrc

This file was deleted.

7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
cache: yarn
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ Feel free to contribute to the project by opening a [Pull Request](https://githu

---

*Created by [Dave Lunny](https://twitter.com/dave_lunny) in the wonderful year of 2016.*
*Created by [Dave Lunny](https://twitter.com/dave_lunny) in the glorious year of 2017.*
*Licensed under MIT :hand:*
24 changes: 24 additions & 0 deletions bin/constants.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const constants = {
menuChoices: [
'Add Custom Labels',
'Add Labels From Package',
'Create a Package From Labels',
'Remove Labels',
'Remove All Labels',
'Reset Token',
'Quit'
],
banners: [
'Welcome to git-labelmaker',
'Adding Custom Labels',
'Adding Labels From Package',
'Creating Package From Labels',
'Removing Labels',
'Resetting Token',
'See Ya!',
'Wrong Password!',
'Removing All Labels'
],
};

module.exports = constants;
Loading