@h3ravel/mail 0.2.0 → 2.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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @h3ravel/mail
2
2
 
3
+ ## 2.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - a27f452: chore: fix all linting issues.
8
+ - c906050: chore: migrate tests suite to jest
9
+ - Updated dependencies [8ceb2c1]
10
+ - Updated dependencies [a27f452]
11
+ - Updated dependencies [c906050]
12
+ - @h3ravel/core@0.4.0
13
+
14
+ ## 1.0.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 3ff97bf: refactor: add a shared package to be extended by others to avoid cyclic dependency issues.
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [3ff97bf]
23
+ - @h3ravel/core@0.3.0
24
+
3
25
  ## 0.2.0
4
26
 
5
27
  ### Minor Changes
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
  MailServiceProvider: () => MailServiceProvider
25
25
  });
26
- module.exports = __toCommonJS(index_exports);
26
+ module.exports = __toCommonJS(src_exports);
27
27
 
28
28
  // src/Providers/MailServiceProvider.ts
29
29
  var import_core = require("@h3ravel/core");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/mail",
3
- "version": "0.2.0",
3
+ "version": "2.0.0",
4
4
  "description": "Mail drivers and templates system for H3ravel.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,8 +8,8 @@
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
- "dependencies": {
12
- "@h3ravel/core": "0.2.0"
11
+ "peerDependencies": {
12
+ "@h3ravel/core": "0.4.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "typescript": "^5.4.0"
@@ -20,6 +20,6 @@
20
20
  "dev": "tsx watch src/index.ts",
21
21
  "start": "node dist/index.js",
22
22
  "lint": "eslint . --ext .ts",
23
- "test": "vitest"
23
+ "test": "jest --passWithNoTests"
24
24
  }
25
25
  }
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "../tsconfig/tsconfig.json",
2
+ "extends": "../shared/tsconfig.json",
3
3
  "compilerOptions": {
4
4
  "outDir": "dist"
5
5
  },