Skip to content

change the default package.json to the current dir #122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function init (options) {
// above the node_modules directory,
// Or that package.json is in the node process' current working directory (when
// running a package manager script, e.g. `yarn start` / `npm run start`)
candidatePackagePaths = [nodePath.join(__dirname, '../..'), process.cwd()]
candidatePackagePaths = [process.cwd(), nodePath.join(__dirname, '../..')]
}

var npmPackage
Expand Down
2 changes: 2 additions & 0 deletions test/specs.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ describe('module-alias', function () {
})

it('should import default settings from ../../package.json', function () {
process.chdir(moduleAliasDir)

linkedModuleAlias()

expectAliasesToBeImported()
Expand Down
10 changes: 10 additions & 0 deletions test/src/node_modules/module-alias/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.