/umd-pkg

Harmony packages for umd/iife format

Primary LanguageTypeScriptMIT LicenseMIT

umd-pkg

Harmony packages for umd/iife format

@umd-pkg/babel-helper-module-imports

Babel helper functions for inserting module loads

This is a fork of @babel/helper-module-imports with a few changes:

  • Add types parameter for @babel/standalone
// before
import { addSideEffect } from "@babel/helper-module-imports";
addSideEffect(path, 'source');

// after
import { addSideEffect } from "@umd-pkg/babel-helper-module-imports";
addSideEffect(path, 'source', t); // add `types`

@umd-pkg/vue-babel-plugin-jsx

Babel Plugin JSX for Vue 3.0

This is a fork of @vue/babel-plugin-jsx with a few changes:

  • Add types and template parameters for @babel/standalone