@mangtre/cli 0.1.0 → 0.1.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.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/templates/app/tsconfig.json.tmpl +13 -1
package/dist/index.js
CHANGED
|
@@ -462,7 +462,7 @@ ${icon} ${app.icon} ${app.nameVi} (${app.id}) \u2014 ${app.status}`);
|
|
|
462
462
|
}
|
|
463
463
|
|
|
464
464
|
// src/index.ts
|
|
465
|
-
var VERSION = "0.1.
|
|
465
|
+
var VERSION = "0.1.1";
|
|
466
466
|
function printHelp() {
|
|
467
467
|
console.log(`M\u1ECDc \u2014 b\u1ED9 c\xF4ng c\u1EE5 creator c\u1EE7a M\u0103ng (CLI: mang v${VERSION})
|
|
468
468
|
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -14,7 +14,7 @@ import { runPublish } from "./commands/publish";
|
|
|
14
14
|
import { runRun } from "./commands/run";
|
|
15
15
|
import { runStatus } from "./commands/status";
|
|
16
16
|
|
|
17
|
-
const VERSION = "0.1.
|
|
17
|
+
const VERSION = "0.1.1";
|
|
18
18
|
|
|
19
19
|
function printHelp(): void {
|
|
20
20
|
console.log(`Mọc — bộ công cụ creator của Măng (CLI: mang v${VERSION})
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": "../../tsconfig.base.json",
|
|
3
2
|
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "Bundler",
|
|
6
|
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
|
+
"strict": true,
|
|
8
|
+
"noUncheckedIndexedAccess": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"isolatedModules": true,
|
|
11
|
+
"verbatimModuleSyntax": true,
|
|
12
|
+
"esModuleInterop": true,
|
|
13
|
+
"resolveJsonModule": true,
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
"forceConsistentCasingInFileNames": true,
|
|
4
16
|
"noEmit": true,
|
|
5
17
|
"jsx": "react-jsx"
|
|
6
18
|
},
|