Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
restore fixtures/ since a test that needs it :)
  • Loading branch information
tinchodias committed Mar 28, 2019
1 parent a0cc0a0 commit 796ecde
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fixtures/project-with-folders/dist/a.js
@@ -0,0 +1,3 @@
module.export = function foo() {
console.log("bar")
}
5 changes: 5 additions & 0 deletions fixtures/project-with-folders/dist/b.js
@@ -0,0 +1,5 @@
const c = require('./c')

module.export = function resultOfC() {
c.result()
}
3 changes: 3 additions & 0 deletions fixtures/project-with-folders/dist/c/index.js
@@ -0,0 +1,3 @@
module.export = function result() {
return 42
}
7 changes: 7 additions & 0 deletions fixtures/project-with-folders/index.js
@@ -0,0 +1,7 @@
const a = require('./dist/a')
const b = require('./dist/b')
const f = require('./lib/d/e/f')

module.export = () => {
a, b, f
}
3 changes: 3 additions & 0 deletions fixtures/project-with-folders/lib/d/e/f/index.js
@@ -0,0 +1,3 @@
module.export = function fortyTwo() {
return 42
}

0 comments on commit 796ecde

Please sign in to comment.