Skip to content

Commit

Permalink
Merge branch 'connor4312/import-cli' into build-integrated-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 committed Sep 20, 2022
2 parents e028959 + 5b24e93 commit 5e2ce13
Show file tree
Hide file tree
Showing 52 changed files with 49 additions and 68 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@
**/src/vs/loader.js
**/test/unit/assert.js
**/typings/**
**/src/cli/**
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ yarn-error.log
vscode.lsif
vscode.db
/.profile-oss
/src/cli/target
/cli/target
2 changes: 1 addition & 1 deletion build/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports.all = [
'scripts/**/*',
'src/**/*',
'test/**/*',
'!src/cli/**/*',
'!cli/**/*',
'!out*/**',
'!test/**/out/**',
'!**/node_modules/**',
Expand Down
3 changes: 2 additions & 1 deletion build/hygiene.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const vfs = require('vinyl-fs');
const path = require('path');
const fs = require('fs');
const pall = require('p-all');

const { all, copyrightFilter, unicodeFilter, indentationFilter, tsFormattingFilter, eslintFilter } = require('./filters');

const copyrightHeaderLines = [
Expand Down Expand Up @@ -291,7 +292,7 @@ if (require.main === module) {
.then(
(vinyls) =>
new Promise((c, e) =>
hygiene(es.readArray(vinyls))
hygiene(es.readArray(vinyls).pipe(filter(all)))
.on('end', () => c())
.on('error', e)
)
Expand Down
File renamed without changes.
Loading

0 comments on commit 5e2ce13

Please sign in to comment.