-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
167c3f8
commit 3b70e31
Showing
7 changed files
with
83 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
test/fixtures/electron-in-dependencies/subpackage/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "fixture-electron-in-dependencies-subpackage", | ||
"version": "1.0.0", | ||
"description": "Electron found in dependencies", | ||
"scripts": {}, | ||
"dependencies": { | ||
"electron": "^26.0.0" | ||
}, | ||
"devDependencies": {} | ||
} |
5 changes: 5 additions & 0 deletions
5
test/fixtures/electron-in-dependencies/subpackage/subdir/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This empty dir is required for testing reading the nearest package.json | ||
# Ignore everything | ||
* | ||
# Except this file | ||
!.gitignore |
10 changes: 10 additions & 0 deletions
10
test/fixtures/electron-in-dev-dependencies/subpackage/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "fixture-electron-in-dev-dependencies-subpackage", | ||
"version": "1.0.0", | ||
"description": "Electron found in devDependencies", | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"electron": "^26.0.0" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
test/fixtures/electron-in-dev-dependencies/subpackage/subdir/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This empty dir is required for testing reading the nearest package.json | ||
# Ignore everything | ||
* | ||
# Except this file | ||
!.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters