Skip to content

Commit 1e14d03

Browse files
committed
fix(CLI): remove exports of deleted files for non-Node.js projects
1 parent 2e0a9ab commit 1e14d03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/cli/tests/cli.integration.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ test(`${
172172
'test-1/.vscode/launch.json': '17407a15e4276d088a9bbe9ae886fa65',
173173
'test-1/.vscode/settings.json': '10c634c5fef6ecd298b6e41bf159f2cc',
174174
'test-1/README.md': '7a9f4efa9213266c3800f3cc82a53ba7',
175-
'test-1/src/index.ts': '5991bedc40ac87a01d880c6db16fe349',
175+
'test-1/src/index.ts': '5025093b4dc30524d349fd1cc465ed30',
176176
'test-1/src/lib/number.spec.ts': '40ebb014eb7871d1f810c618aba1d589',
177177
'test-1/src/lib/number.ts': '43756f90e6ac0b1c4ee6c81d8ab969c7',
178178
'test-1/src/types/example.d.ts': '4221812f6f0434eec77ccb1fba1e3759',
@@ -448,7 +448,7 @@ test(`${
448448
'test-5/LICENSE': 'd11b4dba04062af8bd80b052066daf1c',
449449
'test-5/README.md': '8fc7ecb21d7d47289e4b2469eea4db39',
450450
'test-5/package.json': '187446ae1d92fddaa89b859d3adc6527',
451-
'test-5/src/index.ts': '5991bedc40ac87a01d880c6db16fe349',
451+
'test-5/src/index.ts': '5025093b4dc30524d349fd1cc465ed30',
452452
'test-5/src/lib/number.spec.ts': '40ebb014eb7871d1f810c618aba1d589',
453453
'test-5/src/lib/number.ts': '43756f90e6ac0b1c4ee6c81d8ab969c7',
454454
'test-5/src/types/example.d.ts': '4221812f6f0434eec77ccb1fba1e3759',

src/cli/typescript-starter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export async function typescriptStarter(
210210
});
211211
await replace({
212212
files: join(projectPath, 'src', 'index.ts'),
213-
from: `export * from './lib/hash';\n`,
213+
from: /^export[\S\s]*hash';\s*/,
214214
to: ''
215215
});
216216
await del([

0 commit comments

Comments
 (0)