Skip to content

Commit f5e285c

Browse files
committed
fix: npm exec issues and add lint param to new command
1 parent 5fca64a commit f5e285c

24 files changed

+812
-787
lines changed

.github/ISSUE_TEMPLATE/01-command_bug_report.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,16 @@ body:
1414
label: Which command is this bug report for?
1515
options:
1616
- build
17+
- dev
1718
- generate
1819
- help
1920
- install
21+
- login
22+
- logout
2023
- new
24+
- publish
2125
- start
26+
- unpublish
2227
- other
2328
validations:
2429
required: true

.github/ISSUE_TEMPLATE/02-feature_request.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,16 @@ body:
1212
label: Which command is this feature request for?
1313
options:
1414
- build
15+
- dev
1516
- generate
1617
- help
1718
- install
19+
- login
20+
- logout
1821
- new
22+
- publish
1923
- start
24+
- unpublish
2025
- other
2126
validations:
2227
required: true

.github/labeler.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,24 @@ command:new:
4040
- src/command/commands/new.command.ts
4141
- src/action/actions/new.action.ts
4242

43+
command:publish:
44+
- changed-files:
45+
- any-glob-to-any-file:
46+
- src/command/commands/publish.command.ts
47+
- src/action/actions/publish.action.ts
48+
4349
command:start:
4450
- changed-files:
4551
- any-glob-to-any-file:
4652
- src/command/commands/start.command.ts
4753
- src/action/actions/start.action.ts
4854

55+
command:unpublish:
56+
- changed-files:
57+
- any-glob-to-any-file:
58+
- src/command/commands/unpublish.command.ts
59+
- src/action/actions/unpublish.action.ts
60+
4961
documentation:
5062
- changed-files:
5163
- any-glob-to-any-file:

.github/labels.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,18 @@
7474
description: "Related to new command"
7575
color: "aaa3dc"
7676

77+
- name: "command:publish"
78+
description: "Related to publish command"
79+
color: "aaa3dc"
80+
7781
- name: "command:start"
7882
description: "Related to start command"
7983
color: "aaa3dc"
8084

85+
- name: "command:unpublish"
86+
description: "Related to unpublish command"
87+
color: "aaa3dc"
88+
8189
- name: "question"
8290
description: "Further information is requested"
8391
color: "d876e3"

0 commit comments

Comments
 (0)