Skip to content

Commit 25991d1

Browse files
committed
update deps
1 parent c62c7a8 commit 25991d1

File tree

5 files changed

+1081
-1453
lines changed

5 files changed

+1081
-1453
lines changed

Makefile

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ compose-build:
1010
docker compose build
1111

1212
compose-install:
13-
docker compose run exercises npm install
13+
docker compose run --rm exercises npm install
1414

1515
compose-update:
16-
docker compose run exercises npx ncu -u
16+
docker compose run --rm exercises npx ncu -u
1717

1818
code-lint:
1919
npx eslint .
@@ -25,20 +25,23 @@ code-lint:
2525
# @$$(find . -type f -name *.class -delete)
2626

2727
compose-bash:
28-
docker compose run exercises bash
28+
docker compose run --rm exercises bash
2929

3030
compose-test:
31-
docker compose run exercises make test
31+
docker compose run --rm exercises make test
3232

3333
compose-description-lint:
34-
docker compose run exercises make description-lint
34+
docker compose run --rm exercises make description-lint
3535

3636
compose-schema-validate:
37-
docker compose run exercises make schema-validate
37+
docker compose run --rm exercises make schema-validate
3838

3939
ci-check:
4040
docker compose --file docker-compose.yml build
4141
docker compose --file docker-compose.yml up --abort-on-container-exit
4242

4343
test-fast:
4444
npx vitest
45+
46+
update-deps:
47+
npx ncu -u
Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
---
22
name: Modules
33
tips:
4-
- >
5-
[Official documentation
6-
about modules](https://www.typescriptlang.org/docs/handbook/modules.html)
7-
- >
8-
[How module
9-
resolution happens](https://www.typescriptlang.org/docs/handbook/module-resolution.html#how-nodejs-resolves-modules)
10-
- >
11-
[Official documentation
12-
about namespaces](https://www.typescriptlang.org/docs/handbook/namespaces.html)
13-
- >
14-
[Method
15-
includes()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes)
4+
- |
5+
[Official documentation about modules](https://www.typescriptlang.org/docs/handbook/modules.html)
6+
- |
7+
[How module resolution happens](https://www.typescriptlang.org/docs/handbook/module-resolution.html#how-nodejs-resolves-modules)
8+
- |
9+
[Official documentation about namespaces](https://www.typescriptlang.org/docs/handbook/namespaces.html)
10+
- |
11+
[Method includes()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes)
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
name: Using interfaces
33
tips:
4-
- >
4+
- |
55
[Official documentation](https://www.typescriptlang.org/docs/handbook/2/objects.html)
6-

0 commit comments

Comments
 (0)