angular-doctor 0.0.1-alpha.0 → 0.0.1-alpha.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.
Files changed (2) hide show
  1. package/dist/cli.mjs +1 -1
  2. package/package.json +6 -6
package/dist/cli.mjs CHANGED
@@ -1074,7 +1074,7 @@ const selectProjects = async (rootDirectory, projectFlag, skipPrompts) => {
1074
1074
 
1075
1075
  //#endregion
1076
1076
  //#region src/cli.ts
1077
- const VERSION = "0.0.1-alpha.0";
1077
+ const VERSION = "0.0.1-alpha.1";
1078
1078
  const exitWithHint = () => {
1079
1079
  logger.break();
1080
1080
  logger.log("Cancelled.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-doctor",
3
- "version": "0.0.1-alpha.0",
3
+ "version": "0.0.1-alpha.1",
4
4
  "author": "Antony Giomar <antonygiomarx@gmail.com>",
5
5
  "description": "Diagnose and fix issues in your Angular app",
6
6
  "keywords": [
@@ -11,7 +11,7 @@
11
11
  ],
12
12
  "license": "MIT",
13
13
  "bin": {
14
- "angular-doctor": "./dist/cli.js"
14
+ "angular-doctor": "./dist/cli.mjs"
15
15
  },
16
16
  "files": [
17
17
  "dist"
@@ -19,12 +19,12 @@
19
19
  "type": "module",
20
20
  "exports": {
21
21
  ".": {
22
- "types": "./dist/cli.d.ts",
23
- "default": "./dist/cli.js"
22
+ "types": "./dist/cli.d.mts",
23
+ "default": "./dist/cli.mjs"
24
24
  },
25
25
  "./api": {
26
- "types": "./dist/index.d.ts",
27
- "default": "./dist/index.js"
26
+ "types": "./dist/index.d.mts",
27
+ "default": "./dist/index.mjs"
28
28
  }
29
29
  },
30
30
  "scripts": {