Skip to content

Commit bceb1da

Browse files
committed
Fix Dev Container support
1 parent 237fcd6 commit bceb1da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules/
22
yarn-error.log
33

4+
projects/
45
.parcel-cache/
56
dist/

scripts/lib/dir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import { join } from 'node:path'
22
import { fileURLToPath } from 'node:url'
33

44
export const ROOT = join(fileURLToPath(import.meta.url), '..', '..', '..')
5-
export const PROJECTS = join(ROOT, '..')
5+
export const PROJECTS = join(ROOT, 'projects')
66
export const DIST = join(ROOT, 'dist')
77
export const SRC = join(ROOT, 'src')

0 commit comments

Comments
 (0)