Skip to content

Commit d1d8cf6

Browse files
chore(scripts): only move .d.ts and .js files (gulp scripts)
1 parent 6e7bd0e commit d1d8cf6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/gulp/tasks/move.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ import { join } from 'path';
33
import { samplePath } from '../config';
44
import { containsPackageJson, getDirs } from '../util/task-helpers';
55

6-
const distFiles = src(['packages/**/*']);
6+
const distFiles = src([
7+
'packages/**/*',
8+
'!packages/**/*.ts',
9+
'packages/**/*.d.ts',
10+
]);
711

812
/**
913
* Moves the compiled nest files into "node_module" folder.

0 commit comments

Comments
 (0)