@h3ravel/console 0.1.1 → 1.0.0

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 ADDED
@@ -0,0 +1,23 @@
1
+ # @h3ravel/console
2
+
3
+ ## 1.0.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3ff97bf: refactor: add a shared package to be extended by others to avoid cyclic dependency issues.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [3ff97bf]
12
+ - @h3ravel/core@0.3.0
13
+
14
+ ## 0.2.0
15
+
16
+ ### Minor Changes
17
+
18
+ - aea734f: Fix all known bugs and improved interdependecy between packages.
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [aea734f]
23
+ - @h3ravel/core@0.2.0
package/dist/index.cjs CHANGED
@@ -19,11 +19,11 @@ var __copyProps = (to, from, except, desc) => {
19
19
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
20
 
21
21
  // src/index.ts
22
- var index_exports = {};
23
- __export(index_exports, {
22
+ var src_exports = {};
23
+ __export(src_exports, {
24
24
  ConsoleServiceProvider: () => ConsoleServiceProvider
25
25
  });
26
- module.exports = __toCommonJS(index_exports);
26
+ module.exports = __toCommonJS(src_exports);
27
27
 
28
28
  // src/Providers/ConsoleServiceProvider.ts
29
29
  var import_core = require("@h3ravel/core");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/console",
3
- "version": "0.1.1",
3
+ "version": "1.0.0",
4
4
  "description": "CLI utilities for scaffolding, running migrations, tasks and for H3ravel.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,9 +8,8 @@
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
- "dependencies": {
12
- "h3": "^2.0.0-beta.1",
13
- "@h3ravel/core": "0.1.1"
11
+ "peerDependencies": {
12
+ "@h3ravel/core": "0.3.0"
14
13
  },
15
14
  "devDependencies": {
16
15
  "typescript": "^5.4.0"
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "../../tsconfig.json",
2
+ "extends": "../shared/tsconfig.json",
3
3
  "compilerOptions": {
4
4
  "outDir": "dist"
5
5
  },
package/vite.config.ts DELETED
@@ -1,9 +0,0 @@
1
- import { defineConfig } from 'tsup'
2
-
3
- export default defineConfig({
4
- entry: ['src/index.ts'],
5
- format: ['esm', 'cjs'],
6
- dts: true,
7
- sourcemap: true,
8
- clean: true
9
- })