alex-c-line 1.18.1 → 1.18.3

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 CHANGED
@@ -848,7 +848,7 @@ var commands_default = createCommands;
848
848
 
849
849
  //#endregion
850
850
  //#region package.json
851
- var version = "1.18.1";
851
+ var version = "1.18.3";
852
852
  var package_default = {
853
853
  name: "alex-c-line",
854
854
  version,
@@ -878,7 +878,7 @@ var package_default = {
878
878
  module: "dist/index.cjs",
879
879
  types: "dist/index.d.ts",
880
880
  bin: { "alex-c-line": "dist/index.js" },
881
- files: ["dist"],
881
+ files: ["dist", "templates"],
882
882
  scripts: {
883
883
  "build": "tsdown",
884
884
  "command": "bash -c 'pnpm run build && echo && echo \"Command output:\" && node dist/index.js $@' --",
@@ -945,7 +945,12 @@ var package_default = {
945
945
  packageManager: "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48",
946
946
  engines: { "node": ">=22.0.0" },
947
947
  pnpm: {
948
- "onlyBuiltDependencies": ["esbuild", "unrs-resolver"],
948
+ "onlyBuiltDependencies": [
949
+ "core-js",
950
+ "esbuild",
951
+ "fsevents",
952
+ "unrs-resolver"
953
+ ],
949
954
  "overrides": { "tsdown": "<0.19.0" }
950
955
  }
951
956
  };
package/dist/index.js CHANGED
@@ -814,7 +814,7 @@ var commands_default = createCommands;
814
814
 
815
815
  //#endregion
816
816
  //#region package.json
817
- var version = "1.18.1";
817
+ var version = "1.18.3";
818
818
  var package_default = {
819
819
  name: "alex-c-line",
820
820
  version,
@@ -844,7 +844,7 @@ var package_default = {
844
844
  module: "dist/index.cjs",
845
845
  types: "dist/index.d.ts",
846
846
  bin: { "alex-c-line": "dist/index.js" },
847
- files: ["dist"],
847
+ files: ["dist", "templates"],
848
848
  scripts: {
849
849
  "build": "tsdown",
850
850
  "command": "bash -c 'pnpm run build && echo && echo \"Command output:\" && node dist/index.js $@' --",
@@ -911,7 +911,12 @@ var package_default = {
911
911
  packageManager: "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48",
912
912
  engines: { "node": ">=22.0.0" },
913
913
  pnpm: {
914
- "onlyBuiltDependencies": ["esbuild", "unrs-resolver"],
914
+ "onlyBuiltDependencies": [
915
+ "core-js",
916
+ "esbuild",
917
+ "fsevents",
918
+ "unrs-resolver"
919
+ ],
915
920
  "overrides": { "tsdown": "<0.19.0" }
916
921
  }
917
922
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alex-c-line",
3
- "version": "1.18.1",
3
+ "version": "1.18.3",
4
4
  "description": "Command-line tool with commands to streamline the developer workflow.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,7 +30,8 @@
30
30
  "alex-c-line": "dist/index.js"
31
31
  },
32
32
  "files": [
33
- "dist"
33
+ "dist",
34
+ "templates"
34
35
  ],
35
36
  "dependencies": {
36
37
  "@alextheman/utility": "^4.7.0",
@@ -0,0 +1,23 @@
1
+ ---
2
+ id: base
3
+ category: general
4
+ placeholders:
5
+ - projectName
6
+ - projectType
7
+ ---
8
+
9
+ # Select a Template
10
+
11
+ Please select the option that best describes your changes to ``{{projectName}}``:
12
+
13
+ - [Breaking Change](?template=breaking_change.md) - may require changes in how the {{projectType}} is used and/or deployed.
14
+ - [New Feature](?template=new_feature.md) - For changes that add a new feature to the {{projectType}}.
15
+ - [Bug Fix](?template=bug_fix.md) - For changes that fix a bug in the {{projectType}}.
16
+ - [Tooling Change](?template=tooling_change.md) - For changes to the {{projectType}}'s tooling (dependencies, devDependencies, configs...).
17
+ - [Documentation Change](?template=documentation_change.md) - For changes that affect the way that information about the {{projectType}} is presented to users.
18
+ - [Refactor](?template=refactor.md) - For changes that improve code quality and structure without affecting user-facing behaviour.
19
+ - [Miscellaneous](?template=miscellaneous.md) - For changes that do not fit cleanly into any of the above categories.
20
+
21
+ In some cases, your pull request may be doing more than one of these. In this case, please select a template from the top-down.
22
+ For example, if you are introducing a new feature but also making changes to tooling, please select `New Feature` as that comes before tooling in the list.
23
+ This ensures that the most impactful aspect of the change is reflected.
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: breaking_change
3
+ category: general
4
+ placeholders:
5
+ - projectName
6
+ - projectType
7
+ ---
8
+
9
+ # Breaking Change
10
+
11
+ This is a change to `{{projectName}}` that will cause breaking changes in how the {{projectType}} is used and/or deployed.
12
+
13
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: bug_fix
3
+ category: general
4
+ placeholders:
5
+ - projectName
6
+ - projectType
7
+ ---
8
+
9
+ # Bug Fix
10
+
11
+ This is a bug fix for `{{projectName}}`. It fixes an unintended side-effect of the {{projectType}}.
12
+
13
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: documentation_change
3
+ category: general
4
+ placeholders:
5
+ - projectName
6
+ - projectType
7
+ ---
8
+
9
+ # Documentation Change
10
+
11
+ This is a change to the documentation of `{{projectName}}`. It changes the way that information about the {{projectType}} is presented to users.
12
+
13
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: miscellaneous
3
+ category: general
4
+ placeholders:
5
+ - projectName
6
+ ---
7
+
8
+ # Miscellaneous
9
+
10
+ This is a general change to `{{projectName}}` that does not fit in any of the other provided categories.
11
+
12
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: new_feature
3
+ category: general
4
+ placeholders:
5
+ - projectName
6
+ - projectType
7
+ ---
8
+
9
+ # New Feature
10
+
11
+ This is a new feature for `{{projectName}}`. It adds new functionality to the {{projectType}}.
12
+
13
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: refactor
3
+ category: general
4
+ placeholders:
5
+ - projectName
6
+ ---
7
+
8
+ # Refactor
9
+
10
+ This is a change to the code layout of `{{projectName}}`. It changes how the code is presented in terms of quality and structure without changing its overall user-facing behaviour or functionality.
11
+
12
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: tooling_change
3
+ category: general
4
+ placeholders:
5
+ - projectName
6
+ - projectType
7
+ ---
8
+
9
+ # Tooling Change
10
+
11
+ This is a change to the tooling of `{{projectName}}`. It changes the internal workings of the {{projectType}} and should have no noticeable effect on users.
12
+
13
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,26 @@
1
+ ---
2
+ id: base
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ - infrastructureProvider
7
+ ---
8
+
9
+
10
+ # Select a Template
11
+
12
+ Please select the option that best describes your changes to `{{projectName}}`:
13
+
14
+ - [Manual Change](?template=manual_change.md) - For changes that require me to manually alter {{infrastructureProvider}} resources in some way.
15
+ - [Irreversible Destruction](?template=irreversible_destruction.md) - For changes that irreversibly destroy something managed by {{infrastructureProvider}}.
16
+ - [Bug Fix](?template=bug_fix.md) - For changes that fix a failing deployment and/or unwanted side effect of a given deployment.
17
+ - [Resource Update](?template=resource_update.md) - For changes that update existing resources already managed by {{infrastructureProvider}}.
18
+ - [New Feature](?template=new_feature.md) - For changes that only add to the configuration and do not alter any existing resources.
19
+ - [Tooling Change](?template=tooling_change.md) - For changes to this repository's tooling (dependencies, devDependencies, configs...).
20
+ - [Documentation Change](?template=documentation_change.md) - For changes that affect the way that information about the code is presented to users.
21
+ - [Refactor](?template=refactor.md) - For changes that change code quality and structure without affecting the resulting plan.
22
+ - [Miscellaneous](?template=miscellaneous.md) - For changes that do not fit cleanly into any of the above categories.
23
+
24
+ In some cases, your pull request may be doing more than one of these. In this case, please select a template from the top-down.
25
+ For example, if you are introducing a new feature but also making changes to tooling, please select `New Feature` as that comes before tooling in the list.
26
+ This ensures that the most impactful aspect of the change is reflected.
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: bug_fix
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ ---
7
+
8
+ # Bug Fix
9
+
10
+ This is a bug fix for `{{projectName}}`. It fixes an unintended side-effect of the configuration or deployment.
11
+
12
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: documentation_change
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ ---
7
+
8
+ # Documentation Change
9
+
10
+ This is a change to the documentation of `{{projectName}}`. It changes the way that information about the repository is presented to users.
11
+
12
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,15 @@
1
+ ---
2
+ id: irreversible_destruction
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ - infrastructureProvider
7
+ ---
8
+
9
+ # Irreversible Destruction
10
+
11
+ This is a change to `{{projectName}}` that irreversibly destroys a managed {{infrastructureProvider}} resource. This change can **NOT** be fixed by simply reverting back the changes as it will try recreating the resource entirely and there is no guarantee that it will be restored back to the same state it was previously in.
12
+
13
+ Please take extra care before merging this one in, and be absolutely sure that you intend to fully remove the resource associated with this pull request.
14
+
15
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,14 @@
1
+ ---
2
+ id: manual_change
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ - infrastructureProvider
7
+ - requireConfirmationFrom
8
+ ---
9
+
10
+ # Manual Change
11
+
12
+ This is a change to `{{projectName}}` that requires manual changes to the managed {{infrastructureProvider}} resources. {{requireConfirmationFrom}} **MUST** confirm by approval (or authorship of pull request) that these changes have been made before this can be merged in.
13
+
14
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: miscellaneous
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ ---
7
+
8
+ # Miscellaneous
9
+
10
+ This is a general change to `{{projectName}}` that does not fit in any of the other provided categories.
11
+
12
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: new_feature
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ - infrastructureProvider
7
+ ---
8
+
9
+ # New Feature
10
+
11
+ This is a new feature for `{{projectName}}` that adds a new {{infrastructureProvider}}-managed resource.
12
+
13
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: refactor
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ ---
7
+
8
+ # Refactor
9
+
10
+ This is a change to the code layout of `{{projectName}}`. It changes how the code is presented in terms of quality and structure without changing the overall plan.
11
+
12
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: resource_update
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ - infrastructureProvider
7
+ ---
8
+
9
+ # Resource Update
10
+
11
+ This is a change to an existing resource in `{{projectName}}` in the {{infrastructureProvider}} plan. It changes the currently managed state without removing or adding anything else to the plan.
12
+
13
+ Please see the commits tab of this pull request for the description of changes.
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: tooling_change
3
+ category: infrastructure
4
+ placeholders:
5
+ - projectName
6
+ ---
7
+
8
+ # Tooling Change
9
+
10
+ This is a change to the tooling of `{{projectName}}`. It changes the internal workings of the repository and should have no noticeable effect on the plan.
11
+
12
+ Please see the commits tab of this pull request for the description of changes.