Skip to content

Commit

Permalink
Merge pull request #357 from sir-gon/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
sir-gon authored Jun 12, 2024
2 parents de8edbb + 4f2707e commit 6ef22ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
services:
algorithm-exercises-ts-test:
image: algorithm-exercises-ts:latest
image: algorithm-exercises-ts:test
build:
context: .
target: testing
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"author": "Gonzalo Diaz <[email protected]>",
"description": "Solutions to the first 100 problems from [Project Euler](https://projecteuler.net/)",
"description": "Algorithm exercises solved in Typescript, running with Jest testing suite. Developed with TDD.",
"license": "MIT",
"main": "src/problem0000-template.ts",
"name": "projecteuler.net",
"name": "algorithm-exercises-ts",
"type": "module",
"version": "1.0.0",
"dependencies": {
Expand Down Expand Up @@ -33,7 +33,7 @@
"jest:watch": "node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug --watchAll",
"style:format": "npx --yes prettier --write 'src/**/*.ts'",
"style:check": "npx --yes prettier --check 'src/**/*.ts'",
"test": "npm run jest:ci",
"test": "jest",
"update-all": "npm install $(npm outdated | cut -d' ' -f 1 | sed '1d' | xargs -I '$' echo '$@latest' | xargs echo)"
}
}

0 comments on commit 6ef22ae

Please sign in to comment.