mez-easyjs 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/README.md +2 -0
- package/package.json +4 -4
- package/src/commands/create.js +2 -2
- package/src/index.js +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Ultra-lightweight frontend framework: **HTML / CSS / JS** SFCs, **no Virtual DOM**, surgical DOM updates. One package includes the **runtime**, **compiler**, and **CLI**.
|
|
4
4
|
|
|
5
|
+
**Repository:** [github.com/MoonesMezher/easyjs](https://github.com/MoonesMezher/easyjs)
|
|
6
|
+
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mez-easyjs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Ultra-lightweight frontend framework — runtime, compiler, and CLI in one package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
],
|
|
61
61
|
"repository": {
|
|
62
62
|
"type": "git",
|
|
63
|
-
"url": "git+https://github.com/easyjs
|
|
63
|
+
"url": "git+https://github.com/MoonesMezher/easyjs.git",
|
|
64
64
|
"directory": "packages/easyjs"
|
|
65
65
|
},
|
|
66
|
-
"homepage": "https://github.com/easyjs
|
|
66
|
+
"homepage": "https://github.com/MoonesMezher/easyjs#readme",
|
|
67
67
|
"bugs": {
|
|
68
|
-
"url": "https://github.com/easyjs/
|
|
68
|
+
"url": "https://github.com/MoonesMezher/easyjs/issues"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
71
|
"node": ">=18"
|
package/src/commands/create.js
CHANGED
|
@@ -467,8 +467,8 @@ ${c.cyan(' |___/ ')}${c.bold('.js')}
|
|
|
467
467
|
${c.cyan(`cd ${projectName}`)}
|
|
468
468
|
${c.cyan('npm run dev')}
|
|
469
469
|
|
|
470
|
-
${c.dim('Docs: https://github.com/easyjs
|
|
471
|
-
${c.dim('Issues: https://github.com/easyjs/
|
|
470
|
+
${c.dim('Docs: https://github.com/MoonesMezher/easyjs')}
|
|
471
|
+
${c.dim('Issues: https://github.com/MoonesMezher/easyjs/issues')}
|
|
472
472
|
`);
|
|
473
473
|
}
|
|
474
474
|
|
package/src/index.js
CHANGED
|
@@ -35,7 +35,7 @@ export async function run(argv) {
|
|
|
35
35
|
case 'version':
|
|
36
36
|
case '-v':
|
|
37
37
|
case '--version':
|
|
38
|
-
console.log('easy.js 0.1.
|
|
38
|
+
console.log('easy.js 0.1.1');
|
|
39
39
|
break;
|
|
40
40
|
default:
|
|
41
41
|
console.error(`Unknown command: ${command}`);
|
|
@@ -81,7 +81,7 @@ function parseArgs(argv) {
|
|
|
81
81
|
|
|
82
82
|
function printHelp() {
|
|
83
83
|
console.log(`
|
|
84
|
-
Easy.js CLI v0.1.
|
|
84
|
+
Easy.js CLI v0.1.1
|
|
85
85
|
|
|
86
86
|
Usage:
|
|
87
87
|
easy <command> [options]
|