1.0.2 • Published 11 months ago

@welingtonms/xb-date v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Library template

This project was bootstraped with Yarn 2. Please, refer to their migration guide if something goes south.

Configurint Babel

This project is build only as ESModule; to keep our bundled code as clean as possible, I try to use the latest possible ECMAScript version as target. That mean, if you have to support browsers that don't support certain modern ECMAScript features, you may want to configure your build tools accordingly. Here's an example for Babel:

// babel.config.js
const path = require('path');
module.exports {
  include: [
    ...,
    path.resolve('node_modules/@welingtonms/library'),
  ],
  ...
}