alex-c-line 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -2
- package/dist/index.js +4 -2
- package/package.json +1 -1
- package/templates/pullRequest/general/base.md +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1199,7 +1199,7 @@ function template(program) {
|
|
|
1199
1199
|
//#endregion
|
|
1200
1200
|
//#region package.json
|
|
1201
1201
|
var name = "alex-c-line";
|
|
1202
|
-
var version$1 = "2.2.
|
|
1202
|
+
var version$1 = "2.2.1";
|
|
1203
1203
|
var description = "Command-line tool with commands to streamline the developer workflow.";
|
|
1204
1204
|
//#endregion
|
|
1205
1205
|
//#region src/utility/updates/checkUpdate.ts
|
|
@@ -1427,7 +1427,9 @@ function formatError(error) {
|
|
|
1427
1427
|
const dataError = new _alextheman_utility.DataError({
|
|
1428
1428
|
cwd: error.cwd,
|
|
1429
1429
|
command: error.command,
|
|
1430
|
-
exitCode: error.exitCode
|
|
1430
|
+
exitCode: error.exitCode,
|
|
1431
|
+
stderr: error.stderr,
|
|
1432
|
+
stdout: error.stdout
|
|
1431
1433
|
}, error.code, error.message);
|
|
1432
1434
|
if (typeof error.stack === "string") {
|
|
1433
1435
|
const execaLines = error.stack.split("\n");
|
package/dist/index.js
CHANGED
|
@@ -1168,7 +1168,7 @@ function template(program) {
|
|
|
1168
1168
|
//#endregion
|
|
1169
1169
|
//#region package.json
|
|
1170
1170
|
var name = "alex-c-line";
|
|
1171
|
-
var version$1 = "2.2.
|
|
1171
|
+
var version$1 = "2.2.1";
|
|
1172
1172
|
var description = "Command-line tool with commands to streamline the developer workflow.";
|
|
1173
1173
|
//#endregion
|
|
1174
1174
|
//#region src/utility/updates/checkUpdate.ts
|
|
@@ -1396,7 +1396,9 @@ function formatError(error) {
|
|
|
1396
1396
|
const dataError = new DataError({
|
|
1397
1397
|
cwd: error.cwd,
|
|
1398
1398
|
command: error.command,
|
|
1399
|
-
exitCode: error.exitCode
|
|
1399
|
+
exitCode: error.exitCode,
|
|
1400
|
+
stderr: error.stderr,
|
|
1401
|
+
stdout: error.stdout
|
|
1400
1402
|
}, error.code, error.message);
|
|
1401
1403
|
if (typeof error.stack === "string") {
|
|
1402
1404
|
const execaLines = error.stack.split("\n");
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ placeholders:
|
|
|
9
9
|
|
|
10
10
|
Please select the option that best describes your changes to `{{projectName}}`:
|
|
11
11
|
|
|
12
|
-
- [Breaking Change](?template=breaking_change.md) -
|
|
12
|
+
- [Breaking Change](?template=breaking_change.md) - For changes that have a substantial effect on how the {{projectType}} is used and/or deployed.
|
|
13
13
|
- [New Feature](?template=new_feature.md) - For changes that add a new feature to the {{projectType}}.
|
|
14
14
|
- [Bug Fix](?template=bug_fix.md) - For changes that fix a bug in the {{projectType}}.
|
|
15
15
|
- [Tooling Change](?template=tooling_change.md) - For changes to the {{projectType}}'s tooling (dependencies, devDependencies, configs...).
|