@palmares/schemas 0.1.19 → 0.1.20

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.
@@ -1,22 +1,4 @@
1
1
 
2
- > @palmares/schemas@0.1.18 build /Users/nicolasmelo/workspace/palmares/packages/schemas
2
+ > @palmares/schemas@0.1.19 build /Users/nicolasmelo/workspace/palmares/packages/schemas
3
3
  > pnpm run clear && pnpm run build:cjs && pnpm run build:module && pnpm run build:types
4
4
 
5
-
6
- > @palmares/schemas@0.1.18 clear /Users/nicolasmelo/workspace/palmares/packages/schemas
7
- > rimraf ./dist
8
-
9
-
10
- > @palmares/schemas@0.1.18 build:cjs /Users/nicolasmelo/workspace/palmares/packages/schemas
11
- > swc ./src -d ./dist/cjs --config-file ../../build/.commonjs.swcrc
12
-
13
- Successfully compiled: 43 files with swc (107.05ms)
14
-
15
- > @palmares/schemas@0.1.18 build:module /Users/nicolasmelo/workspace/palmares/packages/schemas
16
- > swc ./src -d ./dist/esm --config-file ../../build/.esm.swcrc
17
-
18
- Successfully compiled: 43 files with swc (86.27ms)
19
-
20
- > @palmares/schemas@0.1.18 build:types /Users/nicolasmelo/workspace/palmares/packages/schemas
21
- > tsc --project tsconfig.types.json
22
-
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @palmares/schemas
2
2
 
3
+ ## 0.1.20
4
+
5
+ ### Patch Changes
6
+
7
+ - add everything as peer dependencies of one another
8
+ - Everything now has peer dependencies instead of dependency
9
+ - Updated dependencies
10
+ - Updated dependencies
11
+ - @palmares/databases@0.1.16
12
+ - @palmares/server@0.1.13
13
+ - @palmares/core@0.1.13
14
+
3
15
  ## 0.1.19
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@palmares/schemas",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
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",
@@ -34,10 +34,10 @@
34
34
  "url": "https://github.com/palmaresHQ/palmares/issues"
35
35
  },
36
36
  "homepage": "https://github.com/palmaresHQ/palmares#readme",
37
- "dependencies": {
38
- "@palmares/core": "0.1.12",
39
- "@palmares/databases": "0.1.15",
40
- "@palmares/server": "0.1.12"
37
+ "peerDependencies": {
38
+ "@palmares/core": "0.1.13",
39
+ "@palmares/databases": "0.1.16",
40
+ "@palmares/server": "0.1.13"
41
41
  },
42
42
  "scripts": {
43
43
  "clear": "rimraf ./dist",
@@ -1,17 +0,0 @@
1
- #!/bin/sh
2
- basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
-
4
- case `uname` in
5
- *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6
- esac
7
-
8
- if [ -z "$NODE_PATH" ]; then
9
- export NODE_PATH="/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/bin/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node_modules"
10
- else
11
- export NODE_PATH="/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/bin/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node_modules:$NODE_PATH"
12
- fi
13
- if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/bin/node-gyp.js" "$@"
15
- else
16
- exec node "$basedir/../../../../../node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/bin/node-gyp.js" "$@"
17
- fi