KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
babel-plugin-date-fns
★ 93
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
DepthOfFieldFX
:
DirectX 11 library that provides a GCN-optimized Compute Shader implementation of Depth of Field
mailjet-apiv3-go
:
[API v3] Official Mailjet API v3 Go wrapper
auto-changelog-hook
:
A simple bash script to automatically generate a CHANGELOG.md file with every git commit.
sparksql-protobuf
:
Read SparkSQL parquet file as RDD[Protobuf]
cordova-plugin-stripe
:
A Cordova plugin that lets you use Stripe's Native SDKs for Android and iOS.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
babel-plugin-date-fns
?
Download (.md)
# babel-plugin-date-fns > :warning: The current version (2.x) supports date-fns v2. If you are using v1, please use [1.x](https://github.com/date-fns/babel-plugin-date-fns/tree/v1). ## Install ```shell $ npm i --save date-fns $ npm i --save-dev babel-plugin-date-fns ``` ## Example Transforms ```js import { differenceInYears, format, formatDistance } from "date-fns"; ``` roughly to ```js import differenceInYears from 'date-fns/differenceInYears'; import format from "date-fns/format"; import formatDistance from "date-fns/formatDistance"; ``` ## Usage ### .babelrc ```json { "plugins": ["date-fns"], "presets": ["@babel/preset-env"] } ``` ### Webpack ```js 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](https://github.com/lodash/babel-plugin-lodash) and [babel-plugin-recharts](https://github.com/recharts/babel-plugin-recharts).