Giter Site home page Giter Site logo

Comments (5)

TarekRaafat avatar TarekRaafat commented on May 17, 2024

Please share your rollup config file if possible along with your dependencies, in order for me to be able to reproduce.

from autocomplete.js.

mikob avatar mikob commented on May 17, 2024

Np. Here is the rollup config, but I don't think anything here is unusual:

import html from 'rollup-plugin-html';
import typescript from 'rollup-plugin-typescript';
import resolve from 'rollup-plugin-node-resolve';
import globby from 'globby';

export default {
	input: globby.sync('src/modules/*'),
	plugins: [
		resolve(),
		typescript(),
		html({
			include: '**/*.html',
			htmlMinifierOptions: {
                collapseWhitespace: true,
                collapseBooleanAttributes: true,
                conservativeCollapse: true,
				minifyJS: true,
				minifyCSS: true,
				removeComments: true,
            }
		}),
	],
	experimentalCodeSplitting: true,
	output: {
		dir: 'chrome-extension/dist/modules',
		entryFileNames: '[name].mjs',
		format: 'esm',
	}
}

from autocomplete.js.

TarekRaafat avatar TarekRaafat commented on May 17, 2024

Hello @mikob, do you still have this Runtime Error issue?

from autocomplete.js.

mikob avatar mikob commented on May 17, 2024

Not sure, I'm not using this anymore. I'll close!

from autocomplete.js.

d3pendent avatar d3pendent commented on May 17, 2024

For everyone who might stumble over this issue:

Using rollup and getting Error: 'default' is not exported by node_modules/@tarekraafat/autocomplete. js/dist/js/autoComplete.js ?

You should use the plugin commonjs with namedExports in your rollup config.
NPM Package for common js rollup plugin: rollup-plugin-commonjs

...
    const plugins = [
        commonjs({
            namedExports: {
                '@tarekraafat/autocomplete.js': ['AutoCompleteJS']
            }
        })
    ];
...


then you can use import AutoCompleteJS from '@tarekraafat/autocomplete.js' un you js file.

instead of AutoCompleteJS you can use whatever name you want.

Hope this helps ;)

from autocomplete.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.