Commit d2ab218
authored
fix(create): Add messaging when done (#83)
## Problem
After running the `create` command there's no messaging indicating that the library was successfully created. In fact, the last thing rendered to the screen is the `cp` command that copies over the config files. I actually thought the command was broken and the `cp` had failed.
## Solution
Replaced the `cp` command with friendly text that says "Copying repo config files." and more importantly when the creation is completed it says "[repoName] successfully created" if the library name was specified (new lib) or "Repo successfully updated" for an existing repo.
Also added an update to the `release` workflow to run the unit tests one more time as a double check to make sure we're not releasing broken code that's merged into `master`.1 parent 074f495 commit d2ab218
File tree
3 files changed
+19
-2
lines changed- .github/workflows
- src/commands/create
3 files changed
+19
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
25 | 35 | | |
26 | 36 | | |
27 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
91 | 98 | | |
92 | 99 | | |
93 | 100 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| 48 | + | |
48 | 49 | | |
49 | 50 | | |
50 | | - | |
51 | 51 | | |
0 commit comments