@modern-js/create 3.0.0 → 3.0.2
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 +7 -5
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -691,11 +691,13 @@ async function main() {
|
|
|
691
691
|
console.log(i18n.t(localeKeys.message.success));
|
|
692
692
|
console.log(i18n.t(localeKeys.message.nextSteps));
|
|
693
693
|
console.log('');
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
694
|
+
if (!useCurrentDir) {
|
|
695
|
+
console.log(i18n.t(localeKeys.message.step1Desc));
|
|
696
|
+
console.log(i18n.t(localeKeys.message.step1, {
|
|
697
|
+
projectName
|
|
698
|
+
}));
|
|
699
|
+
console.log('');
|
|
700
|
+
}
|
|
699
701
|
console.log(i18n.t(localeKeys.message.step2Desc));
|
|
700
702
|
console.log(i18n.t(localeKeys.message.step2));
|
|
701
703
|
console.log('');
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=20"
|
|
21
21
|
},
|
|
22
|
-
"version": "3.0.
|
|
22
|
+
"version": "3.0.2",
|
|
23
23
|
"types": "./dist/types/index.d.ts",
|
|
24
24
|
"main": "./dist/index.js",
|
|
25
25
|
"bin": {
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"bin.js"
|
|
35
35
|
],
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@rslib/core": "0.19.
|
|
37
|
+
"@rslib/core": "0.19.5",
|
|
38
38
|
"@types/node": "^20",
|
|
39
39
|
"tsx": "^4.21.0",
|
|
40
40
|
"typescript": "^5",
|
|
41
|
-
"@modern-js/
|
|
42
|
-
"@modern-js/
|
|
41
|
+
"@modern-js/i18n-utils": "3.0.2",
|
|
42
|
+
"@modern-js/rslib": "2.68.10"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"registry": "https://registry.npmjs.org/",
|