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: v3.1.2
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: v3.1.3
Choose a head ref
  • 3 commits
  • 5 files changed
  • 3 contributors

Commits on Jan 21, 2019

  1. Fix: Remove unused "useBuiltIns" option from @babel/preset-env (#347)

    Fixes the error "Cannot find module 'core-js/modules/es6.set'" by removing the `useBuiltIns` option in babel.
    
    Fixes #349
    Andarist authored and tleunen committed Jan 21, 2019
    Copy the full SHA
    a387aee View commit details
  2. Copy the full SHA
    3a0c560 View commit details
  3. chore(release): 3.1.3

    tleunen committed Jan 21, 2019
    Copy the full SHA
    9e6dcf1 View commit details
Showing with 31 additions and 8 deletions.
  1. +9 −7 .babelrc
  2. +15 −0 .circleci/config.yml
  3. +5 −0 CHANGELOG.md
  4. +1 −0 appveyor.yml
  5. +1 −1 package.json
16 changes: 9 additions & 7 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{
"presets": [
["@babel/preset-env", {
"targets": {
"node": 4
},
"loose": true,
"useBuiltIns": "usage"
}]
[
"@babel/preset-env",
{
"targets": {
"node": 6
},
"loose": true
}
]
]
}
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -36,6 +36,20 @@ jobs:
test_with_node_10:
docker:
- image: circleci/node:10
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Test
command: npm test
- run:
name: Deploy coverage
command: bash <(curl -s https://codecov.io/bash)
test_with_node_11:
docker:
- image: circleci/node:11
steps:
- checkout
- run:
@@ -55,3 +69,4 @@ workflows:
- test_with_node_8
- test_with_node_9
- test_with_node_10
- test_with_node_11
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,11 @@

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.

<a name="3.1.3"></a>
## [3.1.3](https://github.com/tleunen/babel-plugin-module-resolver/compare/v3.1.2...v3.1.3) (2019-01-21)



<a name="3.1.2"></a>
## [3.1.2](https://github.com/tleunen/babel-plugin-module-resolver/compare/v3.1.1...v3.1.2) (2019-01-16)

1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ environment:
- nodejs_version: '8'
- nodejs_version: '9'
- nodejs_version: '10'
- nodejs_version: '11'
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-module-resolver",
"version": "3.1.2",
"version": "3.1.3",
"main": "lib/index.js",
"description": "Module resolver plugin for Babel",
"repository": {