Skip to content

Commit

Permalink
test: run tests via rollup (#5601)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey authored and gkatsev committed Aug 30, 2019
1 parent 85ad44e commit 4134a97
Show file tree
Hide file tree
Showing 17 changed files with 299 additions and 575 deletions.
6 changes: 3 additions & 3 deletions build/sandbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ const sh = require('shelljs');
const files = sh.find(path.join(__dirname, '..', 'sandbox', '**', '*.*'))
.filter((filepath) => path.extname(filepath) === '.example');

const changes = files.map(function(file) {
const p = path.parse(file.path);
const changes = files.map(function(filepath) {
const p = path.parse(filepath);
const nonExample = path.join(p.dir, p.name);

return {
file: file.path,
file: filepath,
copy: nonExample
};
}).filter(function(change) {
Expand Down
Loading

0 comments on commit 4134a97

Please sign in to comment.