jaypie 1.1.68 → 1.1.69
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/package.json +5 -5
- package/dist/jaypie.cjs +0 -54
- package/dist/jaypie.esm.js +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jaypie",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.69",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Finlayson Studio",
|
|
6
6
|
"type": "module",
|
|
@@ -21,23 +21,23 @@
|
|
|
21
21
|
"format:lint": "eslint --fix .",
|
|
22
22
|
"format:package": "sort-package-json ./package.json",
|
|
23
23
|
"lint": "eslint .",
|
|
24
|
-
"prepublish": "npm run build",
|
|
25
24
|
"test": "vitest run .",
|
|
26
25
|
"test:spec:dynamicExport.function": "vitest run ./src/__tests__/dynamicExport.function.spec.js",
|
|
27
26
|
"test:spec:index": "vitest run ./src/__tests__/index.spec.js",
|
|
28
|
-
"test:spec:mongoose.package": "vitest run ./src/__tests__/mongoose.package.spec.js"
|
|
27
|
+
"test:spec:mongoose.package": "vitest run ./src/__tests__/mongoose.package.spec.js",
|
|
28
|
+
"typecheck": "echo '[TODO] Convert jaypie to TypeScript'"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@jaypie/aws": "^1.1.21",
|
|
32
32
|
"@jaypie/core": "^1.1.17",
|
|
33
33
|
"@jaypie/datadog": "^1.1.11",
|
|
34
34
|
"@jaypie/express": "^1.1.16",
|
|
35
|
+
"@jaypie/kit": "^1.1.1",
|
|
35
36
|
"@jaypie/lambda": "^1.1.6",
|
|
36
37
|
"@jaypie/llm": "^1.1.26",
|
|
37
38
|
"@jaypie/mongoose": "^1.1.1"
|
|
38
39
|
},
|
|
39
40
|
"publishConfig": {
|
|
40
41
|
"access": "public"
|
|
41
|
-
}
|
|
42
|
-
"gitHead": "73bef58a9b927ffd95d155fe895bbd4a03e77bf2"
|
|
42
|
+
}
|
|
43
43
|
}
|
package/dist/jaypie.cjs
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var core = require('@jaypie/core');
|
|
4
|
-
var aws = require('@jaypie/aws');
|
|
5
|
-
var datadog = require('@jaypie/datadog');
|
|
6
|
-
var express = require('@jaypie/express');
|
|
7
|
-
var lambda = require('@jaypie/lambda');
|
|
8
|
-
var llm = require('@jaypie/llm');
|
|
9
|
-
var mongoose = require('@jaypie/mongoose');
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
Object.keys(core).forEach(function (k) {
|
|
14
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
15
|
-
enumerable: true,
|
|
16
|
-
get: function () { return core[k]; }
|
|
17
|
-
});
|
|
18
|
-
});
|
|
19
|
-
Object.keys(aws).forEach(function (k) {
|
|
20
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
21
|
-
enumerable: true,
|
|
22
|
-
get: function () { return aws[k]; }
|
|
23
|
-
});
|
|
24
|
-
});
|
|
25
|
-
Object.keys(datadog).forEach(function (k) {
|
|
26
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
27
|
-
enumerable: true,
|
|
28
|
-
get: function () { return datadog[k]; }
|
|
29
|
-
});
|
|
30
|
-
});
|
|
31
|
-
Object.keys(express).forEach(function (k) {
|
|
32
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
33
|
-
enumerable: true,
|
|
34
|
-
get: function () { return express[k]; }
|
|
35
|
-
});
|
|
36
|
-
});
|
|
37
|
-
Object.keys(lambda).forEach(function (k) {
|
|
38
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
39
|
-
enumerable: true,
|
|
40
|
-
get: function () { return lambda[k]; }
|
|
41
|
-
});
|
|
42
|
-
});
|
|
43
|
-
Object.keys(llm).forEach(function (k) {
|
|
44
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
45
|
-
enumerable: true,
|
|
46
|
-
get: function () { return llm[k]; }
|
|
47
|
-
});
|
|
48
|
-
});
|
|
49
|
-
Object.keys(mongoose).forEach(function (k) {
|
|
50
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
51
|
-
enumerable: true,
|
|
52
|
-
get: function () { return mongoose[k]; }
|
|
53
|
-
});
|
|
54
|
-
});
|