vinicius73 / rollup-plugin-pika-resolver

Generate the bundle of your project using Pika CDN for external dependencies.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@vinicius73/rollup-plugin-skypack-resolver

Generate the bundle of your project using Skypack CDN for external dependencies.

Maintainability Build Status Scrutinizer Code Quality Code Coverage @vinicius73/rollup-plugin-skypack-resolver

Install

yarn add @vinicius73/rollup-plugin-skypack-resolver rollup -D

Usage

On this example, axios and lodash-es need be installed as project dependencies, using npm or yarn.

skypackResolver uses your local dependencies to determine cdn version.

//> rollup.config.js
const { skypackResolver } = require('@vinicius73/rollup-plugin-skypack-resolver')

module.exports = {
  input: 'src/index.js',
  output: {
    format: 'es'
  },
  plugins: [skypackResolver({
    modules: ['axios', 'lodash-es']
  })]
}
//> src/index.js
import axios from 'axios'
import { get } from 'lodash-es'

const run = async () => {
  const { data } = await axios.get('https://reqres.in/api/users/2')
  
  console.log(
    get(data, ['data', 'email'])
  )
}

run()
  .then(() => console.log('All done'))
  .catch(err => console.error(err))
rullup -c
//> output
import axios from 'https://cdn.skypack.dev/axios@0.20.0';
import { get } from 'https://cdn.skypack.dev/lodash-es@4.17.15';

const run = async () => {
  const { data } = await axios.get('https://reqres.in/api/users/2');
  console.log(get(data, ['data', 'email']));
};

run()
  .then(() => console.log('All done'))
  .catch(err => console.error(err));

Options

modules

Type: Array[...String]
Required: true

An array with modules that will be transformed into cdn import.

cdnHost

Type: String
Required: false
Default: https://cdn.skypack.dev

Host used in imports.

About

Generate the bundle of your project using Pika CDN for external dependencies.

License:MIT License


Languages

Language:JavaScript 84.9%Language:TypeScript 15.1%