Last active
December 16, 2019 11:45
-
-
Save adamay000/93c065061617297d30047ab27be9fb2e to your computer and use it in GitHub Desktop.
webpackでjQueryプラグインを使う
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 使える!! | |
$('body').velocity(); | |
// ただし、下記のようにどこかしらでVelocityを参照していないとプラグインを読み込んでくれない | |
// 結局のところエントリポイントのファイルとかでimport 'jquery-velocity';読んでおくのがベターな気がする | |
Velocity; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// いろいろ省略 | |
webpack({ | |
plugins: [ | |
new webpack.ProvidePlugin({ | |
jQuery: 'jquery', | |
$: 'jquery', | |
// プラグインを読み込んだ時にwindow.jQueryが存在している必要がある | |
'window.jQuery': 'jquery' | |
// velocity-animateを読み込んでみる | |
// ここではVelocityという名前にしているので、この名前が参照されて始めてモジュールが読み込まれる | |
// つまりソースの中でVelocityを一度も使っていなかった場合、$().velocityも使えない | |
Velocity: 'velocity-animate' | |
}) | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment