Skip to content

Commit

Permalink
More docs
Browse files Browse the repository at this point in the history
  • Loading branch information
photonstorm committed Jan 26, 2018
1 parent 079b1e8 commit 01a88c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dump.js
Expand Up @@ -28,7 +28,11 @@ var filteredTree = dirTree(rootDir, { extensions: /\.js$/ }, (item, PATH) => {

item.path = item.path.replace('..\\phaser\\src\\', '');

if (item.path.substr(-8) !== 'index.js' && item.path.substr(0, 21) !== 'physics\\matter-js\\lib')
if (
item.path.substr(-8) !== 'index.js' &&
item.path.substr(0, 21) !== 'physics\\matter-js\\lib' &&
item.path.substr(0, 9) !== 'polyfills'
)
{
queries.push('INSERT INTO files (path) VALUES ("' + item.path + '")');
}
Expand Down
Binary file modified percy/files.db
Binary file not shown.

0 comments on commit 01a88c2

Please sign in to comment.