2.1.3 • Published 2 years ago

parcel-resolver-project-root v2.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

parcel-resolver-project-root

Build Status

Resolve your imports from './src' and not have to use a tilde or other alias.

Installation

With npm:

$ npm install --save-dev parcel-resolver-project-root

With yarn:

$ yarn add --dev parcel-resolver-project-root

Usage

In the .parcelrc file for your project, add this to the list of resolvers. A blank configuration with nothing but this plugin in it would look like:

{
  "extends": "@parcel/config-default",
  "resolvers": ["parcel-resolver-project-root", "..."]
}

Note that the "..." entry is literal - that tells Parcel to use the rest of its default resolvers there. Without that, your project likely will not build.

Example

After adding that to your parcel config, say you have a project layout like this:

my-awesome-project
├── package.json
├── package-lock.json
├── README.md
└── src
    ├── constants.js
    └── index.js

You can now do this -

import constants from 'constants';

...from anywhere in your project and trust that it will resolve correctly.

Why?

I really liked being able to do this with NextJS and SWC/babel, and Parcel seemed to be lacking this feature. Looking at their plugin API, implementing it as a plugin seemed trivial - so I did.

I may add configuration options later to support more filetypes or the like, submit a GitHub issue if there's any features you'd like to see in the project!

2.1.2

2 years ago

2.1.3

2 years ago

2.1.1

2 years ago

2.1.0

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.0

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago