Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ember-power-calendar-luxon
Advanced tools
Date manipulation, formatting and parsing is too complex for ember-power-calendar to reinvent, so it has to rely on other well tested libraries for that.
This is the addon that exposes the utils used internally by ember-power-calendar, using Luxon.js underneath, a lighter (and arguably with a nicer API) alternative to moment.js that leverages the browser's Intl API for localization.
You will want to install this addon if you already use luxon in your application already, or if luxon is your preferred date manipulation library.
ember install ember-power-calendar-luxon
Add the following lines into you app/app.js
to register this meta addon to ember-power-calendar
import { registerDateLibrary } from 'ember-power-calendar';
import DateUtils from 'ember-power-calendar-luxon';
registerDateLibrary(DateUtils);
The luxon package has conditional exports, which will not correctly handled in app. Cause of this issue, there are two different instance of luxon inside the app. The app imports CommonJs package but embroider force the import of ESModule. This means that luxon settings which you are setting inside your app are not synced with addon.
To fix this issue, you need to add this lines in embroider options. This force the import always to ESModule and so you have only one luxon instance inside your app.
const path = require('path');
return require('@embroider/compat').compatBuild(app, Webpack, {
packagerOptions: {
webpackConfig: {
resolve: {
alias: {
luxon: path.resolve(__dirname, 'node_modules/luxon/build/node/luxon.js'),
},
},
},
},
});
Don't use it.
This library is meant to be used internally by ember-power-calendar
only.
The API can change in breaking ways based on the needs of Ember Power Calendar.
git clone <repository-url>
cd ember-power-calendar-luxon
pnpm install
pnpm lint
pnpm lint:fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versionsember serve
This project is licensed under the MIT License.
FAQs
The default blueprint for ember-cli addons.
The npm package ember-power-calendar-luxon receives a total of 1,028 weekly downloads. As such, ember-power-calendar-luxon popularity was classified as popular.
We found that ember-power-calendar-luxon demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.