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.
- package/dist/cli.mjs +1 -1
- 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.
|
|
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.
|
|
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.
|
|
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.
|
|
23
|
-
"default": "./dist/cli.
|
|
22
|
+
"types": "./dist/cli.d.mts",
|
|
23
|
+
"default": "./dist/cli.mjs"
|
|
24
24
|
},
|
|
25
25
|
"./api": {
|
|
26
|
-
"types": "./dist/index.d.
|
|
27
|
-
"default": "./dist/index.
|
|
26
|
+
"types": "./dist/index.d.mts",
|
|
27
|
+
"default": "./dist/index.mjs"
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|