Skip to content

Commit 98794ac

Browse files
authored
Merge pull request #59 from rwjblue/remove-nested-dir-structure
Remove extra nesting in directory structure.
2 parents 2d7ee24 + 7927bd6 commit 98794ac

File tree

8 files changed

+5
-5
lines changed

8 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"jest": {
4141
"testMatch": [
42-
"<rootDir>/src/tests/**/*-test.js"
42+
"<rootDir>/tests/**/*-test.js"
4343
]
4444
}
4545
}

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

3-
const Macros = require('./lib/utils/macros');
4-
const normalizeOptions = require('./lib/utils/normalize-options').normalizeOptions;
3+
const Macros = require('./utils/macros');
4+
const normalizeOptions = require('./utils/normalize-options').normalizeOptions;
55

66
function macros(babel) {
77
const t = babel.types;
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/tests/create-tests.js renamed to tests/create-tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const DebugToolsPlugin = require('../index');
3+
const DebugToolsPlugin = require('..');
44
const fs = require('fs');
55

66
function createTests(options) {
@@ -433,4 +433,4 @@ function createTests(options) {
433433
}
434434
}
435435

436-
module.exports = createTests;
436+
module.exports = createTests;

0 commit comments

Comments
 (0)