Git Product home page Git Product logo

babel-plugin-date-fns's Introduction

babel-plugin-date-fns

⚠️ 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.

babel-plugin-date-fns's People

Contributors

borodean avatar denkristoffer avatar dependabot[bot] avatar existentialism avatar meatwallace avatar mkg0 avatar renchap avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

babel-plugin-date-fns's Issues

Support for date-fns@2?

Hello,

We rely on this babel plugin to help with bundling only application code that we use. Does it support the somewhat recent date-fns 2.x release?

Thanks!
David

Does it support aliased import?

For example is it possible to do this:

import { format as dateFnsFormat } from "date-fns";

dateFnsFormat(new Date(), "yyyy-MM-dd");

In some cases I have same name functions that conflict with "date-fns", so I think it perhaps would be better to support this feature.

Support i18n

Imports of locale aren't working. This:
import en from "date-fns/locale/en"
causes an error:
Error: Cannot find module 'date-fns/locale'.

Should I do the import otherwise, or is it a bug in the plugin? Thanks a lot!

Support root

Transform:

import dt from 'date-fns';

const x = dt.addHours(new Date(), 1); 
const y = dt.format(y, 'MM/DD/YYYY');

to

import addHours from 'date-fns/add_hours';
import format from 'date-fns/format';

const x = addHours(new Date(), 1); 
const y = format(y, 'MM/DD/YYYY')

speed

Plugin is pretty slow now, (in my case build time increased from 25 to 45 seconds).

Is it possible to speed up plugin at all?

Programmatically generate import names?

Hi there - it seems like this is doing a module lookup right now to determine the import filename. What about doing it programmatically, seeing as date-fns's filenames follow a pattern:

function importNameToFilename(importName) {
  return 'date-fns/' + importName.replace(/([A-Z])/, '_$1').toLowerCase();
}

importNameToFilename('startOfYear') // "date-fns/start_of_year"
importNameToFilename('differenceInCalendarDays') // "date-fns/difference_in_calendar_days"

It seems like this would address #2.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.