Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit fbe6073
Author: Mario Sarcevic <[email protected]>
Date:   Fri Nov 24 17:08:10 2023 +0100

    fix: REMOVE the build-test step from scripts.
    Vitest run cannot be used with run-s (integrated in 'npm run build') as it triggers a weird issue where build-interal (tsc step) fails if executed after 'vitest run' (failure reason is that ts cannot resolve the alias imports).
    If we remove the 'vitest run' step tsc works fine.

commit ec0ed89
Author: Mario Sarcevic <[email protected]>
Date:   Fri Nov 24 17:07:34 2023 +0100

    Revert "chore: Try without run-s in build script"

    This reverts commit dd08f0c.

commit dd08f0c
Author: Mario Sarcevic <[email protected]>
Date:   Fri Nov 24 17:01:27 2023 +0100

    chore: Try without run-s in build script

commit 7104634
Author: Mario Sarcevic <[email protected]>
Date:   Fri Nov 24 16:54:19 2023 +0100

    Revert "chore: Print out used node, npm & tsc versions in client Dockerfile"

    This reverts commit 20549a4.

commit 252ce22
Author: Mario Sarcevic <[email protected]>
Date:   Fri Nov 24 16:54:04 2023 +0100

    Revert "chore: Try installing global ts"

    This reverts commit 452634c.

commit 3216543
Author: Mario Sarcevic <[email protected]>
Date:   Fri Nov 24 16:47:40 2023 +0100

    fix: Try remove test step from npm build

commit 452634c
Author: Mario Sarcevic <[email protected]>
Date:   Fri Nov 24 16:42:37 2023 +0100

    chore: Try installing global ts

commit 20549a4
Author: Mario Sarcevic <[email protected]>
Date:   Fri Nov 24 16:30:03 2023 +0100

    chore: Print out used node, npm & tsc versions in client Dockerfile
  • Loading branch information
msarcev committed Nov 24, 2023
1 parent 1eee426 commit ae687b8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
"lint": "eslint src --ext .tsx,.ts",
"sass-lint": "stylelint ./src/**/*.scss",
"build-internal": "tsc && vite build",
"build-test": "vitest run",
"build": "run-s lint sass-lint build-test build-internal",
"build": "run-s lint sass-lint build-internal",
"test": "vitest"
},
"dependencies": {
Expand Down

0 comments on commit ae687b8

Please sign in to comment.