Socket
Socket
Sign inDemoInstall

babel-plugin-date-fns-next

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-date-fns-next

> :warning: The current master is for v2 pre-release version of date-fns. [See the plugin of v1 version](https://github.com/date-fns/babel-plugin-date-fns/tree/v1).


Version published
Maintainers
1
Install size
4.07 kB
Created

Readme

Source

babel-plugin-date-fns

:warning: The current master is for v2 pre-release version of date-fns. See the plugin of v1 version.

Install

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

Example

Transforms

import { distanceInWordsToNow, differenceInYears, format } from 'date-fns';

roughly to

import distanceInWordsToNow from 'date-fns/distanceInWordsToNow';
import differenceInYears from 'date-fns/differenceInYears';
import format from 'date-fns/format';

Usage

.babelrc

{
  "plugins": ["date-fns"],
  "presets": ["es2015"]
}

Webpack 2

module: {
  rules: [{
    test: /\.js$/,
    exclude: /node_modules/,
    use: {
      loader: 'babel-loader',
      presets: ['es2015'],
      plugins: ['date-fns'],
    },
  }],
}

Thanks

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

Keywords

FAQs

Last updated on 19 Jul 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc