Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert to ES6 module over common js and split up package #16

Open
mokkabonna opened this issue Feb 19, 2022 · 0 comments
Open

Convert to ES6 module over common js and split up package #16

mokkabonna opened this issue Feb 19, 2022 · 0 comments

Comments

@mokkabonna
Copy link
Owner

mokkabonna commented Feb 19, 2022

This means instead of using require('module-name') we use import myModule from 'my-module'

And instead of module.exports = {} we use export const something = function etc.

Read more about modules here:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
Reasoning for ES6 modules and a migration guide: https://blog.sindresorhus.com/hello-modules-d1010b4e777b

In addition to that I want to export the various parts seperately:

Instead of exporting the single object with the install function that both registers the mixin and the catch-async-error component I want to export them seperately as named exports https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules#default_exports_versus_named_exports

Call them catchError, asyncMixin and asyncPlugin so that it can be imported this way:

import { asyncMixin, asyncPlugin, catchError } from 'vue-async-methods'
No default export is needed.

@mokkabonna mokkabonna changed the title Change to es module syntax and no explicit registration of mixin and component Convert to ES6 module over common js Feb 23, 2022
@mokkabonna mokkabonna changed the title Convert to ES6 module over common js Convert to ES6 module over common js and split up package Feb 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant