Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tleunen/babel-plugin-module-resolver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.1.0
Choose a base ref
...
head repository: tleunen/babel-plugin-module-resolver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.0.0
Choose a head ref
  • 3 commits
  • 10 files changed
  • 3 contributors

Commits on Jul 26, 2021

  1. Copy the full SHA
    f2daf06 View commit details

Commits on Jan 9, 2023

  1. chore: Update dependencies and find-babel-config to fix json5 vulnera…

    …bilities (#441)
    
    Update find-babel-config to v2 to fix json5 vulnerabilities
    
    BREAKING CHANGE: Remove support for Node < 16
    tleunen committed Jan 9, 2023
    Copy the full SHA
    c43e71c View commit details
  2. chore(release): 5.0.0

    tleunen committed Jan 9, 2023
    Copy the full SHA
    ff8a445 View commit details
Showing with 14,014 additions and 14,178 deletions.
  1. +1 −1 .babelrc
  2. +1 −1 .github/workflows/test.yml
  3. +9 −0 CHANGELOG.md
  4. +5 −1 DOCS.md
  5. +2 −2 README.md
  6. +3 −4 appveyor.yml
  7. +13,610 −13,664 package-lock.json
  8. +15 −16 package.json
  9. +12 −10 src/resolvePath.js
  10. +356 −479 test/index.test.js
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
"@babel/preset-env",
{
"targets": {
"node": 8
"node": 16
},
"loose": true
}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [16.x, 18.x, 19.x]

steps:
- uses: actions/checkout@v1
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [5.0.0](https://github.com/tleunen/babel-plugin-module-resolver/compare/v4.1.0...v5.0.0) (2023-01-09)


### ⚠ BREAKING CHANGES

* Remove support for Node < 16

* Update dependencies and find-babel-config to fix json5 vulnerabilities ([#441](https://github.com/tleunen/babel-plugin-module-resolver/issues/441)) ([c43e71c](https://github.com/tleunen/babel-plugin-module-resolver/commit/c43e71c592710e4244eccaaa7f972a7464c58d23))

## [4.1.0](https://github.com/tleunen/babel-plugin-module-resolver/compare/v4.0.0...v4.1.0) (2020-12-15)


6 changes: 5 additions & 1 deletion DOCS.md
Original file line number Diff line number Diff line change
@@ -18,7 +18,11 @@
Install the plugin

```
$ npm install --save-dev babel-plugin-module-resolver
npm install --save-dev babel-plugin-module-resolver
```
or
```
yarn add --dev babel-plugin-module-resolver
```

Specify the plugin in your `.babelrc` with the custom root or alias. Here's an example:
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -25,11 +25,11 @@ const MyUtilFn = require('../../../../utils/MyUtilFn');
Install the plugin

```
$ npm install --save-dev babel-plugin-module-resolver
npm install --save-dev babel-plugin-module-resolver
```
or
```
$ yarn add --dev babel-plugin-module-resolver
yarn add --dev babel-plugin-module-resolver
```

Specify the plugin in your `.babelrc` with the custom root or alias. Here's an example:
7 changes: 3 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
environment:
matrix:
- nodejs_version: '8'
- nodejs_version: '9'
- nodejs_version: '10'
- nodejs_version: '11'
- nodejs_version: '16'
- nodejs_version: '18'
- nodejs_version: '19'
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
Loading