Skip to content

Commit 97c0649

Browse files
chore: fix dev mode (#6622)
1 parent 291e15e commit 97c0649

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/atomic/scripts/dev.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ watch('src', {recursive: true}, async (_, filename) => {
166166
filename.includes('e2e') ||
167167
filename.endsWith('index.ts') ||
168168
filename.endsWith('lazy-index.ts') ||
169-
filename.endsWith('.DS_Store')
169+
filename.endsWith('.DS_Store') ||
170+
filename.endsWith('custom-element-tags.ts')
170171
) {
171172
return;
172173
}

0 commit comments

Comments
 (0)