@candlerip/shared3 0.0.40 → 0.0.42

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.40",
3
+ "version": "0.0.42",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -2,7 +2,7 @@ import * as dotenv from 'dotenv';
2
2
  import { NUMBER_ENVIRONMENT_VARIABLE_NAMES } from '../../../environment-variable-name/index.js';
3
3
  import { CustomErrorWorker } from '../../../../error/index.js';
4
4
  export const loadEnvFile = (environmentMode) => {
5
- const { composeCustomError } = CustomErrorWorker.getInstance({ environmentMode });
5
+ const { composeCustomError } = CustomErrorWorker({ environmentMode });
6
6
  const fileName = `.env.${environmentMode}`;
7
7
  const envFile = dotenv.config({ path: `./${fileName}` });
8
8
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -19,4 +19,3 @@ export const loadEnvFile = (environmentMode) => {
19
19
  data: parsed,
20
20
  };
21
21
  };
22
- loadEnvFile('development');
@@ -1,34 +1,25 @@
1
- export const CustomErrorWorker = (() => {
2
- let projectName;
3
- const getInstance = (infoInput) => {
4
- let info = infoInput;
5
- const addInfo = (infoInput) => {
6
- info = {
1
+ import { ProjectSingleton } from '../../../../project/index.js';
2
+ export const CustomErrorWorker = (infoInput) => {
3
+ let info = infoInput;
4
+ const addInfo = (infoInput) => {
5
+ info = {
6
+ ...info,
7
+ ...infoInput,
8
+ };
9
+ };
10
+ const composeCustomError = (message, infoInput) => ({
11
+ customError: {
12
+ id: Math.random().toString(16).slice(2).toUpperCase(),
13
+ info: {
7
14
  ...info,
8
15
  ...infoInput,
9
- };
10
- };
11
- const composeCustomError = (message, infoInput) => ({
12
- customError: {
13
- id: Math.random().toString(16).slice(2).toUpperCase(),
14
- info: {
15
- ...info,
16
- ...infoInput,
17
- },
18
- message,
19
- projectName,
20
16
  },
21
- });
22
- return {
23
- addInfo,
24
- composeCustomError,
25
- };
26
- };
27
- const init = (projectNameInput) => {
28
- projectName = projectNameInput;
29
- };
17
+ message,
18
+ projectName: ProjectSingleton.getProjectName(),
19
+ },
20
+ });
30
21
  return {
31
- getInstance,
32
- init,
22
+ addInfo,
23
+ composeCustomError,
33
24
  };
34
- })();
25
+ };
@@ -1,14 +1,9 @@
1
1
  import { CustomError } from '../../domains/index.js';
2
- export interface ICustomErrorWorker {
3
- getInstance: GetInstance;
4
- init: Init;
5
- }
2
+ export type ICustomErrorWorker = (info: CustomError['info']) => {
3
+ addInfo: AddInfo;
4
+ composeCustomError: ComposeCustomError;
5
+ };
6
6
  export type AddInfo = (props: CustomError['info']) => void;
7
7
  export type ComposeCustomError = (message: CustomError['message'], info?: CustomError['info']) => {
8
8
  customError: CustomError;
9
9
  };
10
- export type GetInstance = (info: CustomError['info']) => {
11
- addInfo: AddInfo;
12
- composeCustomError: ComposeCustomError;
13
- };
14
- export type Init = (projectName: CustomError['projectName']) => void;
@@ -1,2 +1,3 @@
1
1
  export * from './project-config/index.js';
2
2
  export * from './project-name/index.js';
3
+ export * from './singletons/index.js';
@@ -1,2 +1,3 @@
1
1
  export * from './project-config/index.js';
2
2
  export * from './project-name/index.js';
3
+ export * from './singletons/index.js';
@@ -0,0 +1 @@
1
+ export * from './project-singleton/index.js';
@@ -0,0 +1 @@
1
+ export * from './project-singleton/index.js';
@@ -0,0 +1,2 @@
1
+ import { IProjectSingleton } from './types.js';
2
+ export declare const ProjectSingleton: IProjectSingleton;
@@ -0,0 +1,11 @@
1
+ export const ProjectSingleton = (() => {
2
+ let projectName;
3
+ const getProjectName = () => projectName;
4
+ const init = (projectNameInput) => {
5
+ projectName = projectNameInput;
6
+ };
7
+ return {
8
+ getProjectName,
9
+ init,
10
+ };
11
+ })();
@@ -0,0 +1,7 @@
1
+ import { ProjectName } from '../../project-name/index.js';
2
+ export interface IProjectSingleton {
3
+ getProjectName: GetProjectName;
4
+ init: Init;
5
+ }
6
+ export type GetProjectName = () => ProjectName;
7
+ export type Init = (projectName: ProjectName) => void;
@@ -0,0 +1 @@
1
+ export {};