@rvoh/psychic 0.28.2 → 0.28.3
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/dist/cjs/src/error/psychic-application/init-missing-package-manager.js +2 -2
- package/dist/cjs/src/helpers/autogeneratedFileDisclaimer.js +1 -1
- package/dist/cjs/src/server/index.js +1 -1
- package/dist/esm/src/error/psychic-application/init-missing-package-manager.js +2 -2
- package/dist/esm/src/helpers/autogeneratedFileDisclaimer.js +2 -2
- package/dist/esm/src/server/index.js +2 -2
- package/package.json +3 -3
|
@@ -11,8 +11,8 @@ must set packageManager when initializing a new PsychicApplication.
|
|
|
11
11
|
within conf/app.ts, you must have a call to "#set('packageManager', '<YOUR_CHOSEN_PACKAGE_MANAGER>')", i.e.
|
|
12
12
|
|
|
13
13
|
// conf/app.ts
|
|
14
|
-
export default async (
|
|
15
|
-
|
|
14
|
+
export default async (psy: PsychicApplication) => {
|
|
15
|
+
psy.set('packageManager', 'yarn')
|
|
16
16
|
}
|
|
17
17
|
`;
|
|
18
18
|
}
|
|
@@ -16,7 +16,7 @@ ${startComment}
|
|
|
16
16
|
#--#--#--#--#--#--#--#--#--#--#--#--#--#--#--
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
${dream_1.
|
|
19
|
+
${dream_1.DreamLogos.monochrome()}
|
|
20
20
|
|
|
21
21
|
This file was automatically generated by my cat, Aster.
|
|
22
22
|
He does not want you mucking about with his files,
|
|
@@ -19,7 +19,7 @@ class PsychicServer {
|
|
|
19
19
|
return (0, startPsychicServer_js_1.createPsychicHttpInstance)(app, sslCredentials);
|
|
20
20
|
}
|
|
21
21
|
static asciiLogo() {
|
|
22
|
-
return dream_1.
|
|
22
|
+
return dream_1.DreamLogos.colorful();
|
|
23
23
|
}
|
|
24
24
|
expressApp;
|
|
25
25
|
httpServer;
|
|
@@ -9,8 +9,8 @@ must set packageManager when initializing a new PsychicApplication.
|
|
|
9
9
|
within conf/app.ts, you must have a call to "#set('packageManager', '<YOUR_CHOSEN_PACKAGE_MANAGER>')", i.e.
|
|
10
10
|
|
|
11
11
|
// conf/app.ts
|
|
12
|
-
export default async (
|
|
13
|
-
|
|
12
|
+
export default async (psy: PsychicApplication) => {
|
|
13
|
+
psy.set('packageManager', 'yarn')
|
|
14
14
|
}
|
|
15
15
|
`;
|
|
16
16
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DreamLogos } from '@rvoh/dream';
|
|
2
2
|
export default function autogeneratedFileDisclaimer(startComment = '\n/*', endComment = '\n*/') {
|
|
3
3
|
return `\
|
|
4
4
|
${startComment}
|
|
@@ -13,7 +13,7 @@ ${startComment}
|
|
|
13
13
|
#--#--#--#--#--#--#--#--#--#--#--#--#--#--#--
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
${
|
|
16
|
+
${DreamLogos.monochrome()}
|
|
17
17
|
|
|
18
18
|
This file was automatically generated by my cat, Aster.
|
|
19
19
|
He does not want you mucking about with his files,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { closeAllDbConnections,
|
|
1
|
+
import { closeAllDbConnections, DreamLogos } from '@rvoh/dream';
|
|
2
2
|
import * as cookieParser from 'cookie-parser';
|
|
3
3
|
import * as cors from 'cors';
|
|
4
4
|
import * as express from 'express';
|
|
@@ -17,7 +17,7 @@ export default class PsychicServer {
|
|
|
17
17
|
return createPsychicHttpInstance(app, sslCredentials);
|
|
18
18
|
}
|
|
19
19
|
static asciiLogo() {
|
|
20
|
-
return
|
|
20
|
+
return DreamLogos.colorful();
|
|
21
21
|
}
|
|
22
22
|
expressApp;
|
|
23
23
|
httpServer;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@rvoh/psychic",
|
|
4
4
|
"description": "Typescript web framework",
|
|
5
|
-
"version": "0.28.
|
|
5
|
+
"version": "0.28.3",
|
|
6
6
|
"author": "RVOHealth",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@eslint/js": "^9.19.0",
|
|
64
64
|
"@jest-mock/express": "^3.0.0",
|
|
65
|
-
"@rvoh/dream": "^0.
|
|
66
|
-
"@rvoh/dream-spec-helpers": "=0.1
|
|
65
|
+
"@rvoh/dream": "^0.35.0",
|
|
66
|
+
"@rvoh/dream-spec-helpers": "=0.2.1",
|
|
67
67
|
"@rvoh/psychic-spec-helpers": "=0.2.0",
|
|
68
68
|
"@types/express": "^4.17.21",
|
|
69
69
|
"@types/lodash-es": "^4",
|