I'm trying to import a jQuery plugin (namely https://github.com/Mottie/Keyboard) using jspm/SystemJS.
At first, I installed the module by simply typing the following command:
jspm install github:mottie/keyboard
I then added the line to import the library in my code, just after importing jQuery:
import keyboard from 'mottie/keyboard';
However, when running the code, I encountered the following error:
Uncaught TypeError: Multiple defines for anonymous module
Googling the error didn't provide me with a solution, at least not one that I could understand... I don't know if there are some jspm gurus around here that could help me? :)
Many thanks in advance...