diff --git a/.vscode/launch.json b/.vscode/launch.json index c09dcd6..9d38b06 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,5 +1,5 @@ { - "version": "0.4.5", + "version": "0.4.6", "configurations": [ { "name": "dev-prepare-dataset1", diff --git a/README.md b/README.md index 12e3563..d534cb8 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Install [node](https://node.org) latest version and run: ```bash npm install -g poto-siril poto -v -# Should print `poto-siril 0.4.5`. +# Should print `poto-siril 0.4.6`. # Make sure to have `siril` registered in your PATH. siril -v diff --git a/package.json b/package.json index feadae9..bb3c567 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "poto-siril", - "version": "0.4.5", + "version": "0.4.6", "description": "Automatization around Siril () for deep sky astrophotography.", "bin": { "poto": "dist/src/poto-siril.js" diff --git a/src/tests/e2e/__snapshots__/e2e-testing.spec.ts.snap b/src/tests/e2e/__snapshots__/e2e-testing.spec.ts.snap index 94aedd5..2da6fb6 100644 --- a/src/tests/e2e/__snapshots__/e2e-testing.spec.ts.snap +++ b/src/tests/e2e/__snapshots__/e2e-testing.spec.ts.snap @@ -3,7 +3,7 @@ exports[`E2E should be neat 2`] = ` "{ "generatedAt": "2024-10-15T00:00:00.000Z", - "potoVersion": "poto-siril 0.4.5", + "potoVersion": "poto-siril 0.4.6", "metrics": { "cumulatedLightIntegrationMinutes": 12, "cumulatedDarksIntegrationMinutes": 14, diff --git a/src/utils/const.ts b/src/utils/const.ts index 140ba01..cb243dd 100644 --- a/src/utils/const.ts +++ b/src/utils/const.ts @@ -1,4 +1,4 @@ -export const POTO_VERSION = "poto-siril 0.4.5"; +export const POTO_VERSION = "poto-siril 0.4.6"; export const POTO_JSON = "_poto_siril.json"; diff --git a/tsconfig.json b/tsconfig.json index d6e3bac..19f456e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,11 +10,16 @@ "outDir": "dist", "lib": ["esnext"], "types": ["node", "jest"], - "baseUrl": "./", - "paths": { - "@/*": ["src/*"] - } + "baseUrl": "./" }, "exclude": ["node_modules"], - "include": ["src/**/*.ts", "jest.config.ts", "jest.d.ts"] + "include": ["src/**/*.ts", "jest.config.ts", "jest.d.ts"], + "tsc-alias": { + "verbose": false, + "resolveFullPaths": true, + "fileExtensions": { + "inputGlob": "{js,jsx,mjs}", + "outputCheck": ["js", "json", "jsx", "mjs"] + } + } }