@h3ravel/console 4.0.0 → 4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @h3ravel/console
2
2
 
3
+ ## 4.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - @h3ravel/core@1.0.2
8
+
3
9
  ## 4.0.0
4
10
 
5
11
  ### Minor Changes
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ <p align="center"><a href="https://h3ravel.toneflix.net" target="_blank"><img src="https://raw.githubusercontent.com/h3ravel/assets/refs/heads/main/logo-full.svg" width="400" alt="H3ravel Logo"></a></p>
2
+
3
+ [![Framework][ix]][lx]
4
+ [![Console Package Version][i1]][l1]
5
+
6
+ # About H3ravel/Console
7
+
8
+ Musket CLI is the CLI system for the [H3ravel](https://h3ravel.toneflix.net) framework desined to allow you run artisan-like commands.
9
+
10
+ ## Contributing
11
+
12
+ Thank you for considering contributing to the H3ravel framework! The contribution guide can be found in the [H3ravel documentation](#!).
13
+
14
+ ## Code of Conduct
15
+
16
+ In order to ensure that the H3ravel community is welcoming to all, please review and abide by the [Code of Conduct](#).
17
+
18
+ ## Security Vulnerabilities
19
+
20
+ If you discover a security vulnerability within H3ravel, please send an e-mail to Legacy via hamzas.legacy@toneflix.ng. All security vulnerabilities will be promptly addressed.
21
+
22
+ ## License
23
+
24
+ The H3ravel framework is open-sourced software licensed under the [MIT license](LICENSE).
25
+
26
+ [ix]: https://img.shields.io/npm/v/%40h3ravel%2Fcore?style=flat-square&label=Framework&color=%230970ce
27
+ [lx]: https://www.npmjs.com/package/@h3ravel/core
28
+ [i1]: https://img.shields.io/npm/v/%40h3ravel%2Fconsole?style=flat-square&label=@h3ravel/console&color=%230970ce
29
+ [l1]: https://www.npmjs.com/package/@h3ravel/console
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts","../src/Providers/ConsoleServiceProvider.ts"],"sourcesContent":["/**\n * @file Automatically generated by barrelsby.\n */\n\nexport * from './Kernel';\nexport * from './Musketeer';\nexport * from './Commands/MakeController';\nexport * from './Commands/MakeModel';\nexport * from './Commands/MakeResource';\nexport * from './Providers/ConsoleServiceProvider';\n","import { ServiceProvider } from '@h3ravel/core'\n\n/**\n * Handles CLI commands and tooling.\n * \n * Register DatabaseManager and QueryBuilder.\n * Set up ORM models and relationships.\n * Register migration and seeder commands.\n * \n * Auto-Registered when in CLI mode\n */\nexport class ConsoleServiceProvider extends ServiceProvider {\n public static priority = 992;\n\n register () {\n // Core bindings\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;ACAA,kBAAgC;AAWzB,IAAMA,yBAAN,cAAqCC,4BAAAA;EAX5C,OAW4CA;;;EACxC,OAAcC,WAAW;EAEzBC,WAAY;EAEZ;AACJ;","names":["ConsoleServiceProvider","ServiceProvider","priority","register"]}
1
+ {"version":3,"sources":["../src/index.ts","../src/Providers/ConsoleServiceProvider.ts"],"sourcesContent":["/**\n * @file Automatically generated by barrelsby.\n */\n\nexport * from './Kernel';\nexport * from './Musket';\nexport * from './Commands/MakeController';\nexport * from './Commands/MakeModel';\nexport * from './Commands/MakeResource';\nexport * from './Providers/ConsoleServiceProvider';\n","import { ServiceProvider } from '@h3ravel/core'\n\n/**\n * Handles CLI commands and tooling.\n * \n * Register DatabaseManager and QueryBuilder.\n * Set up ORM models and relationships.\n * Register migration and seeder commands.\n * \n * Auto-Registered when in CLI mode\n */\nexport class ConsoleServiceProvider extends ServiceProvider {\n public static priority = 992;\n\n register () {\n // Core bindings\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;ACAA,kBAAgC;AAWzB,IAAMA,yBAAN,cAAqCC,4BAAAA;EAX5C,OAW4CA;;;EACxC,OAAcC,WAAW;EAEzBC,WAAY;EAEZ;AACJ;","names":["ConsoleServiceProvider","ServiceProvider","priority","register"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/console",
3
- "version": "4.0.0",
3
+ "version": "4.0.2",
4
4
  "description": "CLI utilities for scaffolding, running migrations, tasks and for H3ravel.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,8 +8,18 @@
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
+ "keywords": [
12
+ "h3ravel",
13
+ "modern",
14
+ "web",
15
+ "H3",
16
+ "framework",
17
+ "nodejs",
18
+ "typescript",
19
+ "laravel"
20
+ ],
11
21
  "peerDependencies": {
12
- "@h3ravel/core": "1.0.0"
22
+ "@h3ravel/core": "1.0.2"
13
23
  },
14
24
  "devDependencies": {
15
25
  "typescript": "^5.4.0"
package/src/Musket.ts ADDED
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Musket is H3ravel's CLI tool
3
+ */
4
+ export default class { }
package/src/index.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  */
4
4
 
5
5
  export * from './Kernel';
6
- export * from './Musketeer';
6
+ export * from './Musket';
7
7
  export * from './Commands/MakeController';
8
8
  export * from './Commands/MakeModel';
9
9
  export * from './Commands/MakeResource';
package/src/Musketeer.ts DELETED
@@ -1,4 +0,0 @@
1
- /**
2
- * Musketeer is H3ravel's CLI tool
3
- */
4
- export default class { }