@mulanjs/mulanjs 1.0.1-dev.20260220131258 → 1.0.1-dev.20260220132855

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/package.json +14 -14
  2. package/src/cli/index.js +7 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mulanjs/mulanjs",
3
- "version": "1.0.1-dev.20260220131258",
3
+ "version": "1.0.1-dev.20260220132855",
4
4
  "description": "A powerful, secure, and enterprise-grade JavaScript framework.",
5
5
  "main": "dist/mulan.js",
6
6
  "module": "dist/mulan.esm.js",
@@ -57,20 +57,20 @@
57
57
  },
58
58
  "license": "MIT",
59
59
  "dependencies": {
60
- "commander": "^12.0.0",
61
- "fs-extra": "^11.3.3",
62
- "webpack": "^5.104.1",
63
- "webpack-cli": "^6.0.1",
64
- "webpack-dev-server": "^5.2.0",
65
- "ts-loader": "^9.5.4",
66
- "typescript": "^5.0.0",
67
- "source-map": "^0.7.4"
60
+ "commander": "12.0.0",
61
+ "fs-extra": "11.3.3",
62
+ "webpack": "5.104.1",
63
+ "webpack-cli": "6.0.1",
64
+ "webpack-dev-server": "5.2.0",
65
+ "ts-loader": "9.5.4",
66
+ "typescript": "5.0.0",
67
+ "source-map": "0.7.4"
68
68
  },
69
69
  "devDependencies": {
70
- "@types/fs-extra": "^11.0.4",
71
- "@types/jest": "^30.0.0",
72
- "jest": "^30.2.0",
73
- "jest-environment-jsdom": "^30.2.0",
74
- "ts-jest": "^29.4.6"
70
+ "@types/fs-extra": "11.0.4",
71
+ "@types/jest": "29.5.12",
72
+ "jest": "29.7.0",
73
+ "jest-environment-jsdom": "29.7.0",
74
+ "ts-jest": "29.1.2"
75
75
  }
76
76
  }
package/src/cli/index.js CHANGED
@@ -47,12 +47,13 @@ const LOGO_SVG = `<svg width="50" height="50" viewBox="0 0 120 120" fill="none"
47
47
  </svg>`;
48
48
 
49
49
  function printBanner() {
50
- console.log(`
51
- \x1b[35m█▀▄▀█ █░█ █░░ ▄▀█ █▄░█ \x1b[36m░░█ █▀\x1b[0m
52
- \x1b[35m█░▀░█ █▄█ █▄▄ █▀█ █░▀█ \x1b[36m█▄█ ▄█\x1b[0m
53
-
54
- \x1b[33m⚡ THE WORLD'S MOST POWERFUL ASTR-Q FRAMEWORK ⚡\x1b[0m
55
- `);
50
+ const BANNER_PARTS = [
51
+ 'MulanJS',
52
+ 'THE WORLD\'S MOST POWERFUL ASTR-Q FRAMEWORK'
53
+ ];
54
+ console.log('\x1b[35m%s\x1b[0m', BANNER_PARTS[0]);
55
+ console.log('\x1b[33m%s\x1b[0m', BANNER_PARTS[1]);
56
+ console.log('-'.repeat(50));
56
57
  }
57
58
 
58
59
  function askQuestion(query) {