bqworks / slider-pro

A modular, responsive and touch-enabled jQuery slider plugin that enables you to create elegant and professionally looking sliders.
MIT License
877 stars 390 forks source link

ES5 or ES6 Module Import #327

Closed jasperf closed 2 years ago

jasperf commented 2 years ago

Can Slider Pro be imported as an ES5 or ES6 module? Could not find any working code examples. So starting to think I need some template like https://gist.github.com/publicJorn/668d381287632b1fbaed2d5288340b25 to allow importing in Vue components with ease.

jasperf commented 2 years ago

Hmm, maybe overthinking things here. Using:

import $ from 'jquery';
import '../../../../../node_modules/slider-pro/dist/js/jquery.sliderPro.min.js';

may work

or

import '@node/slider-pro/dist/js/jquery.sliderPro.js'; 

with

"@node/*": [
"node_modules/*"
]

at jsconfig.json

should work.