Skip to content

Commit a3afdc7

Browse files
authored
refactor(core): move internal storage to project root (#1285)
1 parent 0d6e6ee commit a3afdc7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/package-lock.json
44

55
# Top-level+Sub directories
6+
.tempest/
67
.cache/
78
.idea/
89
build/
@@ -27,4 +28,4 @@ dist
2728
profile/
2829
db-main.sqlite
2930
db-tenant-1.sqlite
30-
db-tenant-2.sqlite
31+
db-tenant-2.sqlite

packages/core/src/FrameworkKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public function loadConfig(): self
166166

167167
public function registerInternalStorage(): self
168168
{
169-
$path = $this->root . '/vendor/.tempest';
169+
$path = $this->root . '/.tempest';
170170

171171
if (! is_dir($path)) {
172172
mkdir($path, recursive: true);

0 commit comments

Comments
 (0)