Skip to content

Commit

Permalink
Merge pull request #10 from eco-infra/9-add-more-issue-templated
Browse files Browse the repository at this point in the history
feat: add new issue templates
  • Loading branch information
iamdavidmt authored Feb 19, 2024
2 parents 04299a6 + 4c398b8 commit 385741e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/idea.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: Idea
about: Use this template for suggesting a new idea.
title: "Idea Title"
labels: idea
assignees: iamdavidmt
---
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/improvement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: Improvement
about: Use this template for suggesting an improvement, That's not considered a feature, e.g "refactor required for this method".
title: "Improvement Title"
labels: improvement
assignees: iamdavidmt
---
2 changes: 1 addition & 1 deletion app/cli/main.cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export default class MainCli {
if (!args['--token']) throw new Error('Specify token --token')

if (!args['--project-name']) throw new Error('Specify project name --project-name')

this.token = args['--token']
this.breakdown = args['--breakdown'] ?? false
this.apply = args['--apply'] ?? false
Expand All @@ -32,7 +33,6 @@ export default class MainCli {

/**
* @description Set the project path, making sure that the path ends with /
* @param path
*/
setProjectPath(path?: string) {
if (!path) return './'
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eco-infra/ecoinfraissues"
"url": "https://github.com/eco-infra/ecoinfra/issues"
},
"homepage": "https://github.com/eco-infra/ecoinfra#readme",
"homepage": "https://eco-infra.com",
"pkg": {
"scripts": "dist/**/*.js",
"targets": [
Expand Down

0 comments on commit 385741e

Please sign in to comment.