jaypie 1.0.13 → 1.0.14

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/README.md CHANGED
@@ -180,7 +180,6 @@ import {
180
180
  CDK,
181
181
  ERROR,
182
182
  HTTP,
183
- LOG,
184
183
  VALIDATE,
185
184
  } from "jaypie";
186
185
  ```
@@ -215,10 +214,6 @@ See `HTTP` for status codes.
215
214
  * `HTTP.HEADER`: ...
216
215
  * `HTTP.METHOD`: `GET`, `POST`, ...
217
216
 
218
- #### `LOG`
219
-
220
- * `LOG.FORMAT`
221
- * `LOG.LEVEL`
222
217
 
223
218
  #### `VALIDATE`
224
219
 
@@ -505,7 +500,6 @@ const handler = lambdaHandler(async({event}) => {
505
500
  ```javascript
506
501
  import {
507
502
  log,
508
- LOG, // LOG.FORMAT, LOG.LEVEL
509
503
  } from "jaypie";
510
504
  ```
511
505
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jaypie",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "author": "Finlayson Studio",
5
5
  "exports": {
6
6
  ".": {
@@ -25,14 +25,14 @@
25
25
  "test:spec:mongoose.package": "vitest run ./src/__tests__/mongoose.package.spec.js"
26
26
  },
27
27
  "dependencies": {
28
- "@jaypie/core": "^1.0.17"
28
+ "@jaypie/core": "^1.0.18"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@babel/cli": "^7.24.1",
32
32
  "@babel/core": "^7.24.4",
33
33
  "@babel/plugin-transform-modules-commonjs": "^7.24.1",
34
34
  "@babel/preset-env": "^7.24.4",
35
- "@jaypie/testkit": "^1.0.11",
35
+ "@jaypie/testkit": "^1.0.15",
36
36
  "eslint": "^8.57.0",
37
37
  "eslint-config-prettier": "^9.1.0",
38
38
  "eslint-plugin-import": "^2.29.1",
@@ -45,9 +45,9 @@
45
45
  "vitest": "^1.4.0"
46
46
  },
47
47
  "peerDependencies": {
48
- "@jaypie/aws": "^1.0.1",
49
- "@jaypie/lambda": "^1.0.1",
50
- "@jaypie/mongoose": "^1.0.3"
48
+ "@jaypie/aws": "^1.0.3",
49
+ "@jaypie/lambda": "^1.0.2",
50
+ "@jaypie/mongoose": "^1.0.4"
51
51
  },
52
52
  "peerDependenciesMeta": {
53
53
  "@jaypie/aws": {
@@ -0,0 +1,10 @@
1
+ /// <reference types="vitest" />
2
+
3
+ import { defineConfig } from "vite";
4
+
5
+ // https://vitejs.dev/config/
6
+ export default defineConfig({
7
+ test: {
8
+ setupFiles: ["./testSetup.js"],
9
+ },
10
+ });