Skip to content

Commit 456fe47

Browse files
committed
Added '/out' to common build directories
1 parent 85b945a commit 456fe47

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lup-root",
3-
"version": "1.3.7",
3+
"version": "1.3.8",
44
"description": "Determines absolute path to project root and main file",
55
"files": [
66
"lib/**/*"

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
let _MAIN = __filename.replace(/\\/g, '/'); // '\' -> '/'
22
let _ROOT = __dirname.replace(/\\/g, '/'); // '\' -> '/'
33

4-
const COMMON_BUILD_DIRECTORIES = ['/bin', '/.bin', '/build', '/target'];
4+
const COMMON_BUILD_DIRECTORIES = ['/bin', '/.bin', '/build', '/out', '/target'];
55

66
const originalStackTraceLimit = Error.stackTraceLimit;
77
Error.stackTraceLimit = Infinity;

0 commit comments

Comments
 (0)