complete-cli 1.0.27 → 1.0.29

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.
@@ -17,7 +17,7 @@ export class CheckCommand extends Command {
17
17
  description: "Enable verbose output.",
18
18
  });
19
19
  static usage = Command.Usage({
20
- description: "Check the template files of the current TypeScript project to see if they are up to date.",
20
+ description: "Checks the current project for out-of-date files that came from the initial bootstrap.",
21
21
  });
22
22
  async execute() {
23
23
  let oneOrMoreErrors = false;
@@ -3,7 +3,7 @@ import { nukeDependencies } from "complete-node";
3
3
  export class NukeCommand extends Command {
4
4
  static paths = [["nuke"], ["n"]];
5
5
  static usage = Command.Usage({
6
- description: 'Delete the "node_modules" directory and the package lock file, then reinstall the dependencies for the project.',
6
+ description: 'Deletes the "node_modules" directory and the package lock file, then reinstalls the dependencies for the project.',
7
7
  });
8
8
  async execute() {
9
9
  await nukeDependencies();
@@ -19,7 +19,7 @@ export class PublishCommand extends Command {
19
19
  description: "Skip updating the npm dependencies.",
20
20
  });
21
21
  static usage = Command.Usage({
22
- description: "Bump the version & publish a new release.",
22
+ description: "Bumps the version & publishes a new release.",
23
23
  });
24
24
  async execute() {
25
25
  await validate();
@@ -3,7 +3,7 @@ import { updatePackageJSONDependencies } from "complete-node";
3
3
  export class UpdateCommand extends Command {
4
4
  static paths = [["update"], ["u"]];
5
5
  static usage = Command.Usage({
6
- description: 'Invoke "npm-check-updates" to update the dependencies inside of the "package.json" file and then install them.',
6
+ description: 'Invokes "npm-check-updates" to update the dependencies inside of the "package.json" file and then installs them.',
7
7
  });
8
8
  async execute() {
9
9
  const hasNewDependencies = await updatePackageJSONDependencies();
@@ -21,5 +21,5 @@
21
21
  "pnpm-lock.yaml",
22
22
  "yarn.lock",
23
23
  ],
24
- "words": ["dbaeumer", "esbenp", "Zamiell"],
24
+ "words": ["dbaeumer", "esbenp", "sarisia", "Zamiell"],
25
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-cli",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "description": "A command line tool for bootstrapping TypeScript projects.",
5
5
  "keywords": [
6
6
  "typescript"
@@ -38,7 +38,7 @@
38
38
  "chalk": "5.4.1",
39
39
  "clipanion": "4.0.0-rc.4",
40
40
  "complete-common": "1.3.0",
41
- "complete-node": "4.0.1",
41
+ "complete-node": "5.0.0",
42
42
  "klaw-sync": "6.0.0",
43
43
  "yaml": "2.7.0"
44
44
  },
@@ -38,7 +38,7 @@ export class CheckCommand extends Command {
38
38
 
39
39
  static override usage = Command.Usage({
40
40
  description:
41
- "Check the template files of the current TypeScript project to see if they are up to date.",
41
+ "Checks the current project for out-of-date files that came from the initial bootstrap.",
42
42
  });
43
43
 
44
44
  async execute(): Promise<void> {
@@ -6,7 +6,7 @@ export class NukeCommand extends Command {
6
6
 
7
7
  static override usage = Command.Usage({
8
8
  description:
9
- 'Delete the "node_modules" directory and the package lock file, then reinstall the dependencies for the project.',
9
+ 'Deletes the "node_modules" directory and the package lock file, then reinstalls the dependencies for the project.',
10
10
  });
11
11
 
12
12
  async execute(): Promise<void> {
@@ -40,7 +40,7 @@ export class PublishCommand extends Command {
40
40
  });
41
41
 
42
42
  static override usage = Command.Usage({
43
- description: "Bump the version & publish a new release.",
43
+ description: "Bumps the version & publishes a new release.",
44
44
  });
45
45
 
46
46
  async execute(): Promise<void> {
@@ -6,7 +6,7 @@ export class UpdateCommand extends Command {
6
6
 
7
7
  static override usage = Command.Usage({
8
8
  description:
9
- 'Invoke "npm-check-updates" to update the dependencies inside of the "package.json" file and then install them.',
9
+ 'Invokes "npm-check-updates" to update the dependencies inside of the "package.json" file and then installs them.',
10
10
  });
11
11
 
12
12
  async execute(): Promise<void> {