How to use the @pkgr/umd-globals.upperCamelCase function in @pkgr/umd-globals

To help you get started, we’ve selected a few @pkgr/umd-globals examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github 1stG / configs / packages / rollup-config / config.js View on Github external
return pkgFormats.map(format => {
      const isEsVersion = /^es(\d+|next)$/.test(format) && format !== 'es5'
      return {
        input: pkgInput,
        output: {
          file: path.resolve(
            pkgPath,
            `${pkgOutputDir}${format}${prod ? '.min' : ''}.js`,
          ),
          format: isEsVersion ? 'esm' : format,
          name: pkgGlobals[name] || upperCamelCase(normalizePkg(name)),
          globals,
          exports,
        },
        external: id =>
          external.some(pkg => id === pkg || id.startsWith(pkg + '/')),
        onwarn,
        plugins: [
          alias({
            resolve: EXTENSIONS.concat(ASSETS_EXTENSIONS),
            entries: Array.isArray(aliases)
              ? aliases.map(({ find, replacement }) => ({
                  find: tryRegExp(find),
                  replacement,
                }))
              : Object.entries(aliases).map(([find, replacement]) => ({
                  find: tryRegExp(find),
github 1stG / configs / packages / rollup-config / config.js View on Github external
const pkgGlobals = external.reduce((pkgGlobals, pkg) => {
      if (pkgGlobals[pkg] == null) {
        pkgGlobals[pkg] = upperCamelCase(normalizePkg(pkg))
      }
      return pkgGlobals
    }, globals)

@pkgr/umd-globals

Union collections of umd globals mappings

MIT
Latest version published 2 years ago

Package Health Score

46 / 100
Full package analysis