Analyse and generate data to answer the following questions:
- Who uses plib webcomponents
- Who uses plib react components
- Who uses plib native iife component
- Who uses plib obsolete polyfill
- Which plib components versions are used
- Who uses Typescript
- npm run
create-data
- create
./data/dependents.json
- create
- npm run
update-deps
- Update all dependencies in the
package.json
depends on thedependents.json
data
- Update all dependencies in the
- npm run
analyse-dependents
- (0) initial
npm i
- (1) create data with
npm run create-data
- (2) Then update dependencies
npm run update-deps
- (3) Install all dependents
npm i
at the moment only possible withnode 14
- (4) Finally run npm run
analyse-dependents
to create the analyse data
- (0) initial
[
{
name: string,
usePolyfill: boolean,
useWebcomponents: boolean,
useReact: boolean,
useNativeIife: boolean,
useTypescript: boolean,
components: {
x: string,
},
},
];