1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 19:42:38 +02:00
This commit is contained in:
DanieL 2023-02-13 14:41:08 -03:00
parent 64c36d9f4e
commit 0d0338876d
1197 changed files with 121461 additions and 179724 deletions

7
node_modules/chart.js/auto/auto.js generated vendored
View file

@ -1 +1,6 @@
module.exports = require('../dist/chart');
import {Chart, registerables} from '../dist/chart.js';
Chart.register(...registerables);
export * from '../dist/chart.js';
export default Chart;

View file

@ -1,5 +0,0 @@
import {Chart, registerables} from '../dist/chart.mjs';
Chart.register(...registerables);
export default Chart;

View file

@ -1,4 +0,0 @@
import { Chart } from '../types/index.esm';
export * from '../types/index.esm';
export default Chart;

View file

@ -1,8 +1,14 @@
{
"name": "chart.js-auto",
"private": true,
"description": "auto registering package",
"main": "auto.js",
"module": "auto.mjs",
"types": "auto.mts"
"description": "Auto registering package. Exists to support bundlers without exports support such as webpack 4.",
"type": "module",
"main": "./auto.cjs",
"module": "./auto.js",
"exports": {
"types": "./auto.d.ts",
"import": "./auto.js",
"require": "./auto.cjs"
},
"types": "./auto.d.ts"
}