Skip to content

Commit ad5eb95

Browse files
committed
fix: make file command
fix: make file command
1 parent dc9d947 commit ad5eb95

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ generate-migration:
1414
typeorm migration:generate -d $(MIGRATION_SOURCE) src/infraestructure/database/migration/$(FILE)
1515

1616
# Docker tasks
17-
build-server:
17+
build:
1818
docker-compose -p nodejs-ts-clean-architecture build
1919

20-
start-server:
20+
start:
2121
docker-compose up -d
2222

23-
stop-server:
23+
stop:
2424
docker-compose down
2525

2626
# Standalone usage for live reloading
@@ -29,10 +29,10 @@ live-reload:
2929

3030
# Testing
3131
test:
32-
go test ./...
32+
npm run test
3333

34-
test-coverage:
35-
go test -cover ./...
34+
coverage:
35+
npm run coverage
3636

3737
# Cleaning, Formatting, Linting, and Vetting
3838
clean-deps:

src/infraestructure/database/migration/1714004113916-init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export class Init1714004113916 implements MigrationInterface {
1010
}
1111

1212
public async down(queryRunner: QueryRunner): Promise<void> {
13-
await queryRunner.query(`DROP TABLE "user_entity"`);
13+
await queryRunner.query('DROP TABLE "user_entity"');
1414
}
1515
}

0 commit comments

Comments
 (0)