babel-plugin-date-fns

:warning: The current version (2.x) supports date-fns v2. If you are using v1, please use 1.x.

Usage no npm install needed!

<script type="module">
  import babelPluginDateFns from 'https://cdn.skypack.dev/babel-plugin-date-fns';
</script>

README

babel-plugin-date-fns

:warning: The current version (2.x) supports date-fns v2. If you are using v1, please use 1.x.

Install

$ npm i --save date-fns
$ npm i --save-dev babel-plugin-date-fns

Example

Transforms

import { differenceInYears, format, formatDistance } from "date-fns";

roughly to


import differenceInYears from 'date-fns/differenceInYears';
import format from "date-fns/format";
import formatDistance from "date-fns/formatDistance";

Usage

.babelrc

{
  "plugins": ["date-fns"],
  "presets": ["@babel/preset-env"]
}

Webpack

module: {
  rules: [
    {
      test: /\.m?js$/,
      exclude: /(node_modules|bower_components)/,
      use: {
        loader: 'babel-loader',
        options: {
          presets: ['@babel/preset-env'],
          plugins: ['date-fns']
        }
      }
    }
  ]
}

Thanks

Heavily inspired by babel-plugin-lodash and babel-plugin-recharts.