Skip to content

Commit

Permalink
#25: Move to OCLIF
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Aug 6, 2021
1 parent 6369f87 commit bfb632e
Show file tree
Hide file tree
Showing 51 changed files with 2,924 additions and 1,578 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
7 changes: 7 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "oclif",
"rules": {
"semi": ["error", "always"],
"semi-style": ["error", "last"]
}
}
25 changes: 0 additions & 25 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,3 @@ name: Bug report
about: Create a report to help us improve

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Run `hyperdrive...`
2. Click on '....'
3. Scroll down to '....'
4. See error

**Error**
If application, pass in any errors you got or saw

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Operating System and version:**
Run `uname -a` if you are unsure.

**Additional context**
Add any other context about the problem here.
3 changes: 0 additions & 3 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@ name: Other tasks
about: Basically everything else

---

Basically any other task or issue should go here. Try to frame it as a user story if it makes sense.

12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,3 @@ name: Feature request
about: Suggest an idea for this project

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
10 changes: 0 additions & 10 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
bin/hyperdrive
bin/*.sh
*-debug.log
*-error.log
/.nyc_output
/dist
/package-lock.json
/tmp
node_modules
version
README.md.bak
.netrwhist
vim/vim
6 changes: 0 additions & 6 deletions .gitmodules

This file was deleted.

34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
v0.6.2 [May 10, 2021]
v0.7.0-alpha.1 [August 6, 2021](https://github.com/lando/hyperdrive/releases/tag/v0.7.0-alpha.1)
---------------------

As of this release `hyperdrive` is expanding in scope to be a proper package and dependency management tool for `lando`. Check out the [README](https://github.com/lando/hyperdrive/blob/main/README.md) for details on `hyperdrives` new mission and purpose.

* Expanded scope and clarified purpose of `hyperdrive`
* Rebased in `oclif` framework
* Setup basic DevOps flow for future dev

v0.6.2 [May 10, 2021](https://github.com/lando/hyperdrive/releases/tag/v0.6.2)
---------------------

* Fixed default option when prompting to confirm for install
Expand Down
1 change: 0 additions & 1 deletion bin/.gitkeep

This file was deleted.

5 changes: 5 additions & 0 deletions bin/run
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env node

require('@oclif/command').run()
.then(require('@oclif/command/flush'))
.catch(require('@oclif/errors/handle'))
3 changes: 3 additions & 0 deletions bin/run.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off

node "%~dp0\run" %*
24 changes: 0 additions & 24 deletions checks/curl.sh

This file was deleted.

24 changes: 0 additions & 24 deletions checks/docker.sh

This file was deleted.

24 changes: 0 additions & 24 deletions checks/git.sh

This file was deleted.

23 changes: 0 additions & 23 deletions checks/gitemail.sh

This file was deleted.

23 changes: 0 additions & 23 deletions checks/gitname.sh

This file was deleted.

24 changes: 0 additions & 24 deletions checks/lando.sh

This file was deleted.

29 changes: 0 additions & 29 deletions checks/node.sh

This file was deleted.

9 changes: 0 additions & 9 deletions checks/os.sh

This file was deleted.

27 changes: 0 additions & 27 deletions checks/pkgmgr.sh

This file was deleted.

16 changes: 0 additions & 16 deletions checks/sshkey.sh

This file was deleted.

Loading

0 comments on commit bfb632e

Please sign in to comment.