@hazeljs/cli 0.2.0-rc.8 → 0.2.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 -2
- package/dist/commands/add.js +1 -1
- package/dist/commands/generate-app.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -710,11 +710,11 @@ Contributions are welcome! Please read our [Contributing Guide](../../CONTRIBUTI
|
|
|
710
710
|
|
|
711
711
|
## License
|
|
712
712
|
|
|
713
|
-
Apache 2.0 © [HazelJS](https://hazeljs.
|
|
713
|
+
Apache 2.0 © [HazelJS](https://hazeljs.ai)
|
|
714
714
|
|
|
715
715
|
## Links
|
|
716
716
|
|
|
717
|
-
- [Documentation](https://hazeljs.
|
|
717
|
+
- [Documentation](https://hazeljs.ai/docs/packages/cli)
|
|
718
718
|
- [GitHub](https://github.com/hazel-js/hazeljs)
|
|
719
719
|
- [Issues](https://github.com/hazel-js/hazeljs/issues)
|
|
720
720
|
- [Discord](https://discord.com/channels/1448263814238965833/1448263814859456575)
|
package/dist/commands/add.js
CHANGED
|
@@ -166,7 +166,7 @@ function addCommand(program) {
|
|
|
166
166
|
// Show usage hints
|
|
167
167
|
console.log(chalk_1.default.gray('\nUsage:'));
|
|
168
168
|
console.log(chalk_1.default.gray(` ${pkgInfo.hint}`));
|
|
169
|
-
console.log(chalk_1.default.gray(`\nDocumentation: https://hazeljs.
|
|
169
|
+
console.log(chalk_1.default.gray(`\nDocumentation: https://hazeljs.ai/docs/packages/${selectedPackage}`));
|
|
170
170
|
}
|
|
171
171
|
catch (error) {
|
|
172
172
|
console.error(chalk_1.default.red('Error installing package:'), error);
|
|
@@ -528,7 +528,7 @@ coverage/
|
|
|
528
528
|
console.log(chalk_1.default.gray(' npm install'));
|
|
529
529
|
}
|
|
530
530
|
console.log(chalk_1.default.gray(' npm run dev'));
|
|
531
|
-
console.log(chalk_1.default.gray('\nDocumentation: https://hazeljs.
|
|
531
|
+
console.log(chalk_1.default.gray('\nDocumentation: https://hazeljs.ai/docs'));
|
|
532
532
|
console.log(chalk_1.default.gray('Discord: https://discord.com/channels/1448263814238965833/1448263814859456575\n'));
|
|
533
533
|
}
|
|
534
534
|
catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hazeljs/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Command-line interface for scaffolding and generating HazelJS applications and components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -64,10 +64,10 @@
|
|
|
64
64
|
"bugs": {
|
|
65
65
|
"url": "https://github.com/hazeljs/hazel-js/issues"
|
|
66
66
|
},
|
|
67
|
-
"homepage": "https://hazeljs.
|
|
67
|
+
"homepage": "https://hazeljs.ai",
|
|
68
68
|
"funding": {
|
|
69
69
|
"type": "opencollective",
|
|
70
70
|
"url": "https://opencollective.com/hazeljs"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "736a56e3d70b51050608cffae2394de3a3487f20"
|
|
73
73
|
}
|