@palmares/schemas 0.1.9 → 0.1.10

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,15 @@
1
1
  # @palmares/schemas
2
2
 
3
+ ## 0.1.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 421057e: Remove \_\_dirname on all core packages domains
8
+ - Updated dependencies [421057e]
9
+ - @palmares/databases@0.1.10
10
+ - @palmares/server@0.1.8
11
+ - @palmares/core@0.1.8
12
+
3
13
  ## 0.1.9
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@palmares/schemas",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "This defines a default schema definition for validation of data, it abstract popular schema validation libraries like zod, yup, valibot and others\"",
5
5
  "main": "./dist/cjs/src/index.js",
6
6
  "module": "./dist/esm/src/index.js",
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "homepage": "https://github.com/palmaresHQ/palmares#readme",
33
33
  "dependencies": {
34
- "@palmares/core": "0.1.7",
35
- "@palmares/databases": "0.1.9",
36
- "@palmares/server": "0.1.7"
34
+ "@palmares/core": "0.1.8",
35
+ "@palmares/server": "0.1.8",
36
+ "@palmares/databases": "0.1.10"
37
37
  },
38
38
  "scripts": {
39
39
  "clear": "rimraf ./dist",
package/src/domain.ts CHANGED
@@ -4,7 +4,7 @@ import { getDefaultAdapter, setDefaultAdapter } from './conf';
4
4
 
5
5
  import type { SchemasSettingsType } from './types';
6
6
 
7
- const schemasDomain = domain('@palmares/schemas', __dirname, {
7
+ const schemasDomain = domain('@palmares/schemas', '', {
8
8
  commands: {},
9
9
  // eslint-disable-next-line ts/require-await
10
10
  load: async (settings: SchemasSettingsType) => {